Hi all,
How do I use the values of the dataset? I want to compare those values with a textBox.
I have the table adapter set up to run a Select query on the dataset.
Is it something like this??
How do I use the values of the dataset? I want to compare those values with a textBox.
I have the table adapter set up to run a Select query on the dataset.
Is it something like this??
Code:
string myTextBox; myTextBox = myDataSet.myTableAdapter; textBox1.Text = myTextBox;
Comment