-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form2.frm
72 lines (67 loc) · 1.92 KB
/
Form2.frm
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
VERSION 5.00
Begin VB.Form Options
Caption = "Options"
ClientHeight = 3960
ClientLeft = 60
ClientTop = 450
ClientWidth = 8325
LinkTopic = "Form2"
ScaleHeight = 3960
ScaleWidth = 8325
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command3
Caption = "Kaun Banega Crorepati"
Height = 495
Left = 5280
TabIndex = 3
Top = 1440
Width = 1815
End
Begin VB.CommandButton Command2
Caption = "Odd or Even"
Height = 495
Left = 3240
TabIndex = 2
Top = 1440
Width = 1815
End
Begin VB.CommandButton Command1
Caption = "Calculator"
Height = 495
Left = 1200
TabIndex = 1
Top = 1440
Width = 1815
End
Begin VB.Label Label1
Caption = "What do you want to do today??"
BeginProperty Font
Name = "Monotype Corsiva"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 1920
TabIndex = 0
Top = 480
Width = 4335
End
End
Attribute VB_Name = "Options"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Calculator.Show
End Sub
Private Sub Command2_Click()
odd_or_even.Show
End Sub
Private Sub Command3_Click()
KBC_start.Show
End Sub