OK, since I am still waiting for a solution to my problem, and in the meantime am waiting for
vb.net to load...
1. I have a form with text fields. I have created a dataset and a data adapter. My problems are
i. how to populate the text fields with the data from the dataset
> there are a few different techniques for this...and it depends on which version of
VB, but in general, they are the similar. You can either link them to your dataset field values, or you can move the data in manually (ie: a call to a load_data subroutine). The first method is simpler, if these are indeed database-related values. If not, you MUST use the 2nd technique.
ii. how to navigate to the next/previous record
your dataset should have functions like "movenext" or "moveprevious"
iii. how to save/delete records from the dataset
I usually use SQL for all my data manipulations, so I create either a database proc to do this -- like an API -- and do some checking at that level -- or you could create a sql statement and execute it directly within your
VB code.
iv. to to navigate yo the first/last records
your dataset should have movefirst, movelast OR use SQL to do this...
Hope this helps some.