DataSet Question

  • Thread starter Thread starter Looch
  • Start date Start date
L

Looch

If I create a dataset in a Form_Load sub, how can I use that dataset
in another sub (i.e Next_Click, which would move to the next record in
the dataset displaying the data on my form somewhat like an Access
form?)

Generally speaking of course, thanks for any insight.
 
If I create a dataset in a Form_Load sub, how can I use that dataset
in another sub (i.e Next_Click, which would move to the next record in
the dataset displaying the data on my form somewhat like an Access
form?)

Generally speaking of course, thanks for any insight.

Make the variable which holds a reference to the dataset a class
member. That way it is accessible from any method in the Form.
 
Back
Top