Textbox binding

abhi2823

Active member
Joined
Sep 8, 2007
Messages
32
Programming Experience
1-3
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
 
try this one:
' add this code after the fill method of your data adapter
txtboxname.databindings.add("text", datatablename, ''fieldname")
 
Back
Top