Search:

Type: Posts; User: ArunJ

Search: Search took 0.06 seconds.

  1. What is the difference between Declaration and Instantiation an object?

    Hello,

    What is the difference between Declaration and Instantiation an object?

    Regards,
  2. Re: How would you define the scope of Public, Private, Friend procedures?

    Public procedure is available anywhere it is global
    private procedure is accessible only within the class where it is declared
    friend procedure is available outside the class but not outside the...
  3. Replies
    2
    Views
    1,414

    Re: Default property of datacontrol

    Well if you can create your own datacontrol then you can set default property for the datacontrol for sure!

    Yes you can change the default property of a datacontrol in Vb environment!
  4. Re: What is the difference between DAO, RDO and ADO?

    DAO is really old and was really meant for interacting with MS Access.
    RDO came next. It was more flexible but it still old and crusty by today's
    standards. ADO came next and allowed all kinds of...
  5. Re: How to lock a textbox need property through code.

    TextBox.Readonly=True

    This property is used to lock the text box to enter data.
  6. Re: What are those controls that do not have events?

    Line and shape control donot have any events. Similarly,
    Pointer control also doesn't have any events.
  7. How to encrypt & decrypt text or files in Vb dot net?

    HI,

    I want to know how can I encrypt and decrypt text string on a simple Vb form accepting text from textbox?
  8. Re: What are the differences between flexgrid control and dbgrid control?

    1. Datagrid is Editable, flexgrid is Diplay only.

    2. DBGrid allows full data binding while MSFlexGrid allows read-only binding

    3. MSFlex grid is smaller and allows cell merging while Datagrid...
  9. How to use windows clipboard to copy text in a vb.net application?

    Hi,

    How to use windows clipboard to copy text in a vb.net application?

    Please provide me an example!
  10. Vb program need to import the windows help file

    Hi,

    In my vb program I need to import the windows help file please help me with the code for the same!
  11. Re: How to convert an RGB value to a long or a long to RGB?

    Try this!



    'Add 1 Command Button to your form.
    'Insert the following code to your form:

    Private Sub Command1_Click()
    r = Val(InputBox$("Red Value"))
    B = Val(InputBox$("Blue Value"))
  12. Replies
    4
    Views
    13,081

    Zip Unzip a file in vb.net?

    Hi,

    I want to know we can zip or unzip files without using any other software?

    I am working on vb.net project.
  13. Replies
    4
    Views
    9,832

    Temporary table in VB.NET

    Hello friends,

    I am developing an application where i want this VB.net application to accept the data from the user then store it in a table for temporary basis, Do some functions & when all done...
  14. Replies
    4
    Views
    2,415

    Re: How can I add my program to startup ?

    It occurs sometimes when you may like to add a program to your start up by dragging the program shortcut in All Programs >> Startup

    But there is more better way to do it, which could save your...
  15. Calling a function with arguments or parameter in Powershell?

    Hi,

    I don't understand the difference between the parameter & arguments in the powershell while calling a function?

    Can you guys please help me understanding the basic difference & the...
  16. Replies
    6
    Views
    6,363

    How to send mail on submit button?

    Hi,
    I am working with vb.net
    I want my Submit button to send the data entered on the form Textboxes to be email at a particular email ID.
    I want to do this simultaneously when user click on submit...
  17. Re: How can I display system date & time on my webpage?

    The timer is the right solution. But only in client/server environment. I did this also in WEB forms and the timer caused changes in the form - the cursor jumps after the timer event automaitacally...
  18. How to refresh database after adding a new record?

    Hi,

    I am working on vb.net project & i have added a record to my SQL database & now I want to refresh it but don't understand how to do this. Any help?
  19. Re: How to auto resize controls on the form in Vb.Net?

    All controls have Anchor and Dock properties, which are useful to automatically stretch/align them when the form is resized. You can experiment with the Windows Forms Designer (select a control, go...
  20. Replies
    3
    Views
    24,489

    Re: Code to detect USB drive in VB.NET?

    It sounds like you want someone to do all the work for you. Put a Button ,Textbox and a Listbox on a form and use the following:


    Imports System.Reflection

    Imports System.IO

    Public Class...
  21. Replies
    4
    Views
    3,412

    DataType Decimal or double for Currency?

    Hello friends!

    I have a simple question about data type for money

    Which is a better practice to use decimal or double for currency or money?

    What you guys say?
  22. Replies
    3
    Views
    13,700

    Re: VB.NET Datareader to display number of rows?

    Please visit this webpage.

    http://www.devx.com/vb2themax/Tip/18807

    I hope this helps!
  23. Replies
    3
    Views
    1,275

    Re: What is Software rendering?

    Hi,

    I dont know how can i explain you what is software rendering but I am having some problem related to same topic so am asking my question here:

    I have been given the task of developing my...
  24. Re: To include one XAML file into another XAML file?

    Well i just read your question & with simple google search i found this article which I think is really helpful article regarding your query Ie. including one XAML file with another XAML file
  25. Finding .NET Framework Configuration Tool in .NET SDK (Mscorcfg.msc)

    Finding .NET Framework Configuration Tool in .NET SDK 3.5 (Mscorcfg.msc)

    Hi,
    I have Windows SDK for Windows Server 2008 and .NET Framework 3.5 before installing .Net SDK 2.0 but I am not allowed...
  26. Replies
    5
    Views
    3,216

    Re: Vista 64 problem installing Visual Studio 2005

    So it seems I have to install the normal (non-Vista) SP1 *then* the Vista version.... but the only problem (and how f***ing typical is this of Microsoft) that the link to the original SP1 is...
  27. Replies
    1
    Views
    1,738

    Re: C#: How to access webBrowser child window

    Please have a look at this webpage:
    http://www.codeproject.com/KB/scripting/share_parent_childorpopup.aspx
    I think here you will get the solution.
  28. Replies
    4
    Views
    2,202

    Re: Call hierarchy of procedures

    I am actually looking for a tool to do this since its quite a big program with a lot of functions & numerous paths to it.
    call hierarchy will help me to back-track the call paths.
  29. Replies
    4
    Views
    2,202

    Call hierarchy of procedures

    Hello,
    I am using Visual studio 2008 & my project is in VB.net
    I want the call hierarchy of the procedures in the project.

    Regards,
    ArunJ
  30. Replies
    4
    Views
    7,172

    System.Data.DataRowView in combobox

    Hi,

    System.Data.DataRowView in combobox
    That happens to me when I have misspelled the column name being assigned to
    the DisplayMember property. I've found that both the spelling and the case...
  31. Replies
    4
    Views
    8,069

    DataGrid with Fixed header & scroll in ASP.NET

    Hi,
    Anyone know about the opensource GridView Extension with scroll & fixed header?
    It must work on different browsers too.

    Thanks,
  32. Replies
    2
    Views
    1,943

    Re: The type initializer give me an error

    Thanks for the help I think my code is wrong!
    I need to do this other way!
  33. Replies
    2
    Views
    1,943

    The type initializer give me an error

    Hi,

    I am trying to open an OleDb connection for access it gives me the following error.

    The type initializer for
    'System.Transactions.Diagnostics.DiagnosticTrace' threw an exception.

    ...
  34. Re: Finding .Net control's instance name from an hWnd.

    Sorry Alphonsus but am not in in the same process so this Control.FromHandle() wont help me!
    IS thre any other way?
  35. Finding .Net control's instance name from an hWnd.

    Hi,
    I am trying to run an automated testing application for Vb.Net.
    I can find all of the
    window handles for the app under test, but now I need to get from the handle
    back to the .net control...
  36. Replies
    2
    Views
    1,295

    Method to post postdata & get the result

    Hello,
    Working on dotnet platform.
    I want to know how can I use the objects provided in System.net to download the page using the post method? WebClient can send a querystring to a page but dont...
Results 1 to 36 of 36
Page generated in 1,713,925,018.01396 seconds with 15 queries