DataRowVersion - Strongly typed dataset

W

Woody Splawn

If reviewing how to get the DataRowVersion data from a row in a dataset I
see no example of how to do this with a strongly typed dataset using dot
notation. Below I have an example of how I get a value into a integer value
called OrigStatus not using dot notation.



OrigStatus = CInt(Me.DataSetQuoteDetail1.quote(0)("quote_status_id",
DataRowVersion.Original))



As you see, in the example above it is necessary for me to supply the name
of the column in quotation marks. Is there a way to do this in a strongly
typed dataset using dot notation so that I don't have to supply the column
name in quotation marks?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top