Using ADO dataset

A

Atif - Alghanem

hi,
I need to use a dataset without binding to a text box. i need to move value
from dataset to textbox manually. does anyone have any sample for this.

Thanks and regards
atif
 
N

Norman Yuan

if you know the value you want to put into a text box is in which table (and
which row and which column) of the dataset, then:

TextBox1.Text=MyDataSet.Tables[myTable].Rows[rowIndex][theColumn].ToString()
;
 

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