Unbound Text Boxes - to Bound

  • Thread starter Thread starter Mark Snowdon
  • Start date Start date
M

Mark Snowdon

Hi,

How can I get the value from an unbound text box into a table, through
a separate bound text box?
 
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
 
Back
Top