Control Code to copya Value from a text box to another

  • Thread starter Thread starter Bob V
  • Start date Start date
B

Bob V

2 Unbound text boxes what code do I need in the control for [TextboxB] to
copy [TextboxA]
Thanks for any help...............Bob
 
2 Unbound text boxes what code do I need in the control for [TextboxB] to
copy [TextboxA]
Thanks for any help...............Bob

In the code for TextboxA (not TextboxB) capture the TextboxA Exit
event, e.g.,

Private Sub TextboxA_Exit(Cancel As Integer)
TextboxB.Value = TextboxA.Value
End Sub
 
Back
Top