Search results for query: *

  • Users: joyxl
  • Order by date
  1. J

    How to pass a DataSet between forms?

    I declared the DataSet as public in a module. It works fine, all my forms can access it :) Thanks for the reply.
  2. J

    Is there a need to close my forms?

    I use Application.Exit() to quit the program. Does this code closes all the forms created? Thanks
  3. J

    Is there a need to close my forms?

    reply I am using VB.net 2003.
  4. J

    How to pass a DataSet between forms?

    I am VB.NET newbie working on a simple Pocket PC application. It will query the database, fills a DataSet and displays it. I have two forms - one to get the search info and query the database, the other to display the data. How I am going to pass the data or DataSet over to the other form and...
  5. J

    Is there a need to close my forms?

    how to close forms? So how do i switch forms and at the same time, close forms i have created previously? thanks
  6. J

    Is there a need to close my forms?

    I am a VB.NET newbie working on a simple Pocket PC application. I used the following code to switch my forms. In form 1: Dim Form2 As New Form2 Form2.Show() Me.Hide() In form 2: Dim Form1 As New Form1 Form1.Show() Me.Hide() It does what just the way I wanted, but I have read that hiding...
Back
Top