|
-
Feb 7th, 2005, 04:36 AM
#1
Thread Starter
Addicted Member
Plz Correct the Syntax :Retrive Value From DataSet
--------------------------------------------------------------------------------
textBox1.Text = dataset.Tables[table1].Columns[0].DefaultValue;
textBox2.Text = dataset.Tables[table1].Columns[1].DefaultValue;
textBox3.Text = dataset.Tables[table1].Columns[2].DefaultValue;
Last edited by Waseemalisyed; May 10th, 2005 at 06:47 AM.
Reason: ok
-
Feb 7th, 2005, 04:53 AM
#2
Re: Plz Correct the Syntax :Retrive Value From DataSet
textBox1.Text = dataset.Tables["table1"].Columns[0].DefaultValue;
textBox2.Text = dataset.Tables["table1"].Columns[1].DefaultValue;
textBox3.Text = dataset.Tables["table1"].Columns[2].DefaultValue;
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|