hello
i have a question
for example i have so many label's
and one textbox
now i want when i write 3 number on the textbox and click on the form this command executes
and if i write 1 on text box it happens to the label1
and so on
and my command must be something like this but don't know how to do that
i have a question
for example i have so many label's
and one textbox
now i want when i write 3 number on the textbox and click on the form this command executes
Code:
label3.caption = "vb6"
and so on
and my command must be something like this but don't know how to do that
Code:
Private Sub Form_Click()
Label(Text1.Text).Caption = "vb6"
End Sub