B Bob V Nov 26, 2007 #1 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
S Smartin Nov 26, 2007 #2 2 Unbound text boxes what code do I need in the control for [TextboxB] to copy [TextboxA] Thanks for any help...............Bob Click to expand... 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
2 Unbound text boxes what code do I need in the control for [TextboxB] to copy [TextboxA] Thanks for any help...............Bob Click to expand... 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