Quote:
|
Originally Posted by altafingar
hello,
i want to write a code that will do following things
1) i have text box, user will input the text in the text box 1
2) in second text box the user input will be displayed.
thanks in advance.
Altaf
|
with 2 textboxes on a form, text1 and text2,
Private Sub Text1_KeyPress(KeyAscii As Integer)
Text2.Text = Text1.Text
End Sub
kevin