hi.
wanted to know..if i can use the EXACT textBox that in Access , from visual basic.
Printable View
hi.
wanted to know..if i can use the EXACT textBox that in Access , from visual basic.
In VB you use the data bound controls DAO or ADO. They are not quite like Access but close were in Access you bind a form to a recordset or table and then drop the text box and bind it to a field. In VB you place a Data Control on the form and then a Textbox. Assign a data source to the data control. Then in the Textbox properties bind its datasource to the data control etc..Quote:
hi.
wanted to know..if i can use the EXACT textBox that in Access , from visual basic.
Review Data Controls with VB for more details.
Note you can even create a data form in VB much like you can in Access.