Unbound Text Boxes - to Bound

M

Mark Snowdon

Hi,

How can I get the value from an unbound text box into a table, through
a separate bound text box?
 
G

Graham Mandeno

Hi Mark

This depends a bit on your application, but as a simple example you could
put the following code in the AfterUpdate event of the unbound textbox:
Me.txtBound = Me.txtUnbound
 
Top