G
gauty
In .NET 1.x, you referenced a strongly typed row in a typed dataset by
such VB code as:
drForum = dsForum.Forum(0) 'Get row 0 in the typed dataset
ds
or
drForum = dsForum.Forum.Rows(0)
and then you could reference the columns in the row by code such as
drForum.AuthorName
Things seem to have changed in .NET 2.0 (which I'm fairly new to) and
I can't for the life of me figure out how to do the same thing! I know
the answer will be pathetically easy, but having serached around all
over the place, all I can find is references to filling typed datasets
by using adapters, which all seems over complicated for what I want to
do.
Any help greatly appreciated!
such VB code as:
drForum = dsForum.Forum(0) 'Get row 0 in the typed dataset
ds
or
drForum = dsForum.Forum.Rows(0)
and then you could reference the columns in the row by code such as
drForum.AuthorName
Things seem to have changed in .NET 2.0 (which I'm fairly new to) and
I can't for the life of me figure out how to do the same thing! I know
the answer will be pathetically easy, but having serached around all
over the place, all I can find is references to filling typed datasets
by using adapters, which all seems over complicated for what I want to
do.
Any help greatly appreciated!