forked from rrishabh145/HelloWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloWorld.frm
More file actions
28 lines (28 loc) · 781 Bytes
/
HelloWorld.frm
File metadata and controls
28 lines (28 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
VERSION 5.00
Begin VB.Form HelloWorld
Caption = "HelloWorld"
ClientHeight = 3135
ClientLeft = 60
ClientTop = 405
ClientWidth = 4680
LinkTopic = "HelloWorld"
ScaleHeight = 3135
ScaleWidth = 4680
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command1
Caption = "Hello World"
Height = 1695
Left = 480
TabIndex = 0
Top = 600
Width = 3495
End
End
Attribute VB_Name = "HelloWorld"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub MyButton_Click()
MsgBox ("Hello world!")
End Sub