forked from smbx/smbx-legacy-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmLoader.frm
107 lines (103 loc) · 3.16 KB
/
frmLoader.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
VERSION 5.00
Object = "{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}#1.1#0"; "ieframe.dll"
Begin VB.Form frmLoader
BorderStyle = 1 'Fixed Single
Caption = "Super Mario Bros. X - Version 1.3 - www.SuperMarioBrothers.org"
ClientHeight = 6855
ClientLeft = 45
ClientTop = 375
ClientWidth = 9405
Icon = "frmLoader.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6855
ScaleWidth = 9405
StartUpPosition = 2 'CenterScreen
Begin VB.CheckBox chkFrameskip
Caption = "Disable Frameskip"
Height = 255
Left = 4560
TabIndex = 5
Top = 6480
Width = 1695
End
Begin VB.CheckBox chkSound
Caption = "Disable Sound"
Height = 255
Left = 6360
TabIndex = 4
Top = 6480
Width = 1455
End
Begin SHDocVwCtl.WebBrowser Splash
Height = 6135
Left = 120
TabIndex = 3
Top = 120
Width = 9135
ExtentX = 16113
ExtentY = 10821
ViewMode = 0
Offline = 0
Silent = 0
RegisterAsBrowser= 0
RegisterAsDropTarget= 1
AutoArrange = 0 'False
NoClientEdge = 0 'False
AlignLeft = 0 'False
NoWebView = 0 'False
HideFileNames = 0 'False
SingleClick = 0 'False
SingleSelection = 0 'False
NoFolders = 0 'False
Transparent = 0 'False
ViewID = "{0057D0E0-3573-11CF-AE69-08002B2E1262}"
Location = "http:///"
End
Begin VB.CommandButton cmdExit
Caption = "Exit"
Height = 375
Left = 7920
TabIndex = 2
Top = 6360
Width = 1335
End
Begin VB.CommandButton cmdEditor
Caption = "Level Editor"
Height = 375
Left = 1560
TabIndex = 1
Top = 6360
Width = 1335
End
Begin VB.CommandButton cmdGame
Caption = "Start Game"
Height = 375
Left = 120
TabIndex = 0
Top = 6360
Width = 1335
End
End
Attribute VB_Name = "frmLoader"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdEditor_Click()
LevelEditor = True
StartMenu = True
End Sub
Private Sub cmdExit_Click()
KillIt
End Sub
Private Sub cmdGame_Click()
StartMenu = True
End Sub
Private Sub Form_Load()
Splash.Navigate "http://www.supermariobrothers.org/splash/"
End Sub
Private Sub Form_Unload(Cancel As Integer)
If StartMenu = False Then KillIt
End Sub