A abhi2823 Active member Joined Sep 8, 2007 Messages 32 Programming Experience 1-3 Mar 9, 2008 #1 Hi How can i bind a text box using the following sql statement select rates from table where date_entry=date and broker_firm= firm Rates are going to be binded to the textbox Thanks in advance
Hi How can i bind a text box using the following sql statement select rates from table where date_entry=date and broker_firm= firm Rates are going to be binded to the textbox Thanks in advance
K kyoshiro Active member Joined Jan 20, 2008 Messages 30 Programming Experience Beginner Mar 16, 2008 #2 try this one: ' add this code after the fill method of your data adapter txtboxname.databindings.add("text", datatablename, ''fieldname") Upvote 0 Downvote
try this one: ' add this code after the fill method of your data adapter txtboxname.databindings.add("text", datatablename, ''fieldname")