H
Hugo Lefèvre
hello,
I want to fill up a dataset with data of my own. Which is the way to do this
?
///this is the creation of a dataset with a row which contains 2 fields
VerenigingDataSet VrDs = new VerenigingDataSet();
///if I do this, I receive an error
VrDs.Vereniging.Rows[0].ToString() = cbo1.Text;
VrDs.Vereniging.Rows[1].ToString() = txt1.Text;
How can I fill up this dataset with mine input data ?
Anyway many thanks and many regards,
Hugo
I want to fill up a dataset with data of my own. Which is the way to do this
?
///this is the creation of a dataset with a row which contains 2 fields
VerenigingDataSet VrDs = new VerenigingDataSet();
///if I do this, I receive an error
VrDs.Vereniging.Rows[0].ToString() = cbo1.Text;
VrDs.Vereniging.Rows[1].ToString() = txt1.Text;
How can I fill up this dataset with mine input data ?
Anyway many thanks and many regards,
Hugo