Update Access by using a text box??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to update Access by using a txtBox.
Is it possible to update Access this way?

Example:

If I selected the txtBox and input a line of text I would like that line of
text to be sent to the right Access field in the data base when it is
updated.
 
Using the Wizard, create an OLEDB connection and dataadapter, once you have
connected to your database ( tested it ), create a dataset by right clicking
the adapter. Bind the textbox to the table/field in the dataset and on text
changed event, call the Update method of the adapter.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 
Can I still do this even if i have already created the OLEDB connection and
datadapter connections?

One Handed Man ( OHM - Terry Burns ) said:
Using the Wizard, create an OLEDB connection and dataadapter, once you have
connected to your database ( tested it ), create a dataset by right clicking
the adapter. Bind the textbox to the table/field in the dataset and on text
changed event, call the Update method of the adapter.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 
Sure, I was just giving you a set of instructions, pick up from where u are.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing

Shane said:
Can I still do this even if i have already created the OLEDB connection and
datadapter connections?
 
When I click on DataBindings in the properties menu a list of options open
up, they are Advanced,Tag, and Text. Can somebody tell me what Tag and Text
are used for?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top