Step by Step Tutorial | Hello World in Visual BAsic 6.0 | Basic Tutorial

1.Creat the Program. Using Visual Basic 6.0.
2.Put one TEXTBOX and one COMMAND BOX 
3. Then, we only put code at command (ENTER) button.
#theCodes
Private Sub Command1_Click()
Text1.Text = "Hello World!"
End Sub
4. We are DONE! Hit run, or press F5.

Post a Comment