Programming languages

Visual Basic

An event-driven programming language from Microsoft that combines the simplicity of BASIC with the power and flexibility of .NET.

Share this starting point code.study/visual-basic
Created by
Microsoft
First appeared
1991
Official resource
Visit the main website

Your first program

Hello, World!

Visual Basic
Private Sub Form_Load()
    MsgBox "Hello, World!"
End Sub