Using ADO dataset

  • Thread starter Thread starter Atif - Alghanem
  • Start date Start date
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
 
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()
;
 
Back
Top