| Can someone post a beginner Visual Basic program?

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:

  1. A program from visual basic? cherry_alifani asked: can someone tell me how to make a...
  2. why is visual basic a good programming language to use? Hussain A asked: why is visual basic a good programming...
  3. 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...
  4. 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...
  5. Visual Basic Programming Help? michbox asked: okay i created a simple income calculator but...

Filed Under Programming & Design |

Tagged With

Comments

3 Responses to “Can someone post a beginner Visual Basic program?”

  1. catbertnc on June 26th, 2009 8:16 pm

    Take a look at this page. It’s a simple ‘Hello World’ program in VB.

  2. Aasem on June 27th, 2009 1:21 am

    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

  3. ilasabba on June 30th, 2009 12:36 pm

    Follow this URL to see the complete program