C
chris
Hi There,
How can I extract a DataSet? I recieve the dataset from a
server. I created a DataTable like this:
DataSet ds = remoteInterface.retrieveUser(userBankId);
DataTable dtBankStuff = ds.Tables["Customers"];
is this the right way?
I would like to extract only the columns to textboxes,
since I will only receive one row.
I tried this:
textBox15.Text = dtBankStuff.Columns[0].ToString();
but it doesn't work. Has anyone please a suggestion?
Thanks a lot
Chris
How can I extract a DataSet? I recieve the dataset from a
server. I created a DataTable like this:
DataSet ds = remoteInterface.retrieveUser(userBankId);
DataTable dtBankStuff = ds.Tables["Customers"];
is this the right way?
I would like to extract only the columns to textboxes,
since I will only receive one row.
I tried this:
textBox15.Text = dtBankStuff.Columns[0].ToString();
but it doesn't work. Has anyone please a suggestion?
Thanks a lot
Chris