3k views

Hello World in Visual Basic

Visual Basic
  1. REM Hello World in Visual Basic for Windows
  2.  
  3. VERSION 2.00
  4. Begin Form Form1
  5.    Caption         =   "Form1"
  6.    ClientHeight    =   6096
  7.    ClientLeft      =   936
  8.    ClientTop       =   1572
  9.    ClientWidth     =   6468
  10.    Height          =   6540
  11.    Left            =   876
  12.    LinkTopic       =   "Form1"
  13.    ScaleHeight     =   6096
  14.    ScaleWidth      =   6468
  15.    Top             =   1188
  16.    Width           =   6588
  17.    Begin Label Label1
  18.       Caption         =   "Hello World!"
  19.       Height          =   372
  20.       Left            =   2760
  21.       TabIndex        =   0
  22.       Top             =   2880
  23.       Width           =   972
  24.    End
  25. End
  26. Option Explicit
  27.  

­

¿Feeling curious? Check out the hello world program in the other languages supported by The Source Cookbook!

Tags: Visual Basic Hello World

Embed: