HELP Please! - Unbound Controls to update record

Z

Zoltar54

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.
 
Z

Zoltar54

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?
 
Top