accessing the ItemArray[] for a row in a dataset

N

Noel Marshall

I need some help. I'm beginning to think I'm a big idiot (keep those
comments to yourself). I'm building a very simple data editing application.
I fill a dataset on the form load event and tie some text boxes to the
dataset:

Textbox.Text = Dataset.Tables[0].Rows[Index].ItemArray[0].ToString();

This works fine. What I want to do is edit the data if the value in the
text box has changed:
if(haschanged)
Dataset.Tables[0].Rows[Index].ItemArray[0] = Textbox.Text;

I've also tried the .SetValue(Textbox.Text, 0) method of the ItemArray. It
says in both the MSDN documentation and in the intellisense that the
ItemArray[<pos>] property has both a get and a set...

Any help would be great!
 

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