HELP Please! - Unbound Controls to update record

G

Guest

I am desperately trying to find a way to use an unbound textbox on a control
to update a record. The text box in question is populated with information
based on a selection in a related combobox.

Can anyone help?
 
S

sike11 via AccessMonster.com

Hi,

Use the AfterUpdate event for the combo box and bind the value to the text
box.
E.g.
me.mytextbox = me.mycombobox.column(0).

Remember columns are zero based.
 
G

Guest

That part of the code I have however I am not able to have the information in
the textbox added to the record table. Is this possible?
 

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

Top