Expose Rows in a C++ .NET Typed Dataset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In C# this works find, I can get the data from the row.
string strFirstName = clientSet1.Clients[0].ClientFirstName;

How would I do this in C++ .NET? I can't seem to work my way into the data.
strFirstName = clientSet1->Clients ?
 
Should be:

myDataSet->TableName->Item[index]->Field

-mike
MVP
 

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

Back
Top