Visual Basic
VERSION 2.00
Begin Form Form1
Caption = "Hello World!"
ClientHeight = 540
ClientLeft = 1095
ClientTop = 1515
ClientWidth = 2445
Height = 945
Left = 1035
LinkTopic = "Form1"
ScaleHeight = 540
ScaleWidth = 2445
Top = 1170
Width = 2565
Begin Label Label1
Alignment = 2 'Center
Caption = "Hello World!"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 12
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 255
Left = 120
TabIndex = 0
Top = 120
Width = 2175
End
End
submitted by: tcarlson@ncsc.dni.us (Tom Carlson)
Private Sub FOrm_Load()
Static I
I = 1
for I = 1 to 10
msgbox "Hello World"
Next I
end sub
submitted by: mickey@UKANS.EDU