V
Vayse
Lets say I create a databound Form with the datasource config wizard.
It has a Dataset -> TestDataSet, and two table adapters.
When the form loads, I have code like so
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Me.PermissionsTableAdapter.Fill(Me.TestDataSet.Permissions)
Me.UsersTableAdapter.Fill(Me.TestDataSet.Users)
End Sub
I'm a bit unclear on the order of what happens. What are the steps?
Does the Dataset load the schema first, then the data?
Or does only the schema load, then the table adapters fill with the
necessary data?
Thanks
Vayse
It has a Dataset -> TestDataSet, and two table adapters.
When the form loads, I have code like so
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Me.PermissionsTableAdapter.Fill(Me.TestDataSet.Permissions)
Me.UsersTableAdapter.Fill(Me.TestDataSet.Users)
End Sub
I'm a bit unclear on the order of what happens. What are the steps?
Does the Dataset load the schema first, then the data?
Or does only the schema load, then the table adapters fill with the
necessary data?
Thanks
Vayse