Search results for query: *

  • Users: joyxl
  • Content: Threads
  • Order by date
  1. 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...
  2. 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