hi there... i have a problem regarding bounding dbase into textbox, combobox, and richtectbox.... i know there's an easy way using wizard to make it detailed but i want is coded. i have a sample program here but there are somthing wrong with it.
dim con as new oledbconnection("connectionstring")
dim sqlcom as new oledbcommand("select command",con)
dim myadapter as new oledbadapter(sqlcom)
dim bind1 as new bindingsource
dim ds as new dataset
sqlcom.connection.open()
myadapter.fill(ds)
sqlcom.connection.close()
textbox1.databinding.add("text", ds , "table_column") <-- i got an error on this