View Single Post
Old 11-18-2000, 07:11 PM   #2
farha
Member (3 bit)
 
Join Date: Nov 2000
Posts: 6
Quote:
Originally posted by jotto84
Hi, i need help, this is a simple project but i have no idea. There is one text box for entering your name, then i want a label box to display it. So it works like this

enter name text1
John Doe

label1
Doe, John

I would use a command button to make this work. Does anyone know what the code it to do that?


Hey, make one txtInput one lblOutput, and one button if you wish to make cmdShow.

Then for coding,
Private Sub Show_Click()
lblOutput.Caption = txtInput.Text

End Sub







farha is offline   Reply With Quote