Can someone post a beginner Visual Basic program?
stlsigma2 asked:
I just want to see what the language looks like. Maybe something simple like outputting “Hello World”
Related posts:
- A program from visual basic? cherry_alifani asked: can someone tell me how to make a...
- why is visual basic a good programming language to use? Hussain A asked: why is visual basic a good programming...
- How can I check if a file exists on the computer by a Visual Basic program? SB asked: I want to make a program that checks...
- how to make a visual basic program to record a 2 pin connection on a serial port? baseballman999 asked: I run a retail store and i would...
- Visual Basic Programming Help? michbox asked: okay i created a simple income calculator but...
Filed Under Programming & Design |
Tagged With Visual Basic Program
Comments
3 Responses to “Can someone post a beginner Visual Basic program?”
Take a look at this page. It’s a simple ‘Hello World’ program in VB.
If you place a button on a VB form and double click the button. you will see a code to allow you do your work:
following: I just placed msgbox “Hello World”
Public sub Button_Click()
msgbox “Hello World”
End Sub
Follow this URL to see the complete program