This repository was archived by the owner on Feb 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathfrmSplash.frm
60 lines (60 loc) · 2.08 KB
/
frmSplash.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
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H80000007&
BorderStyle = 0 'None
Caption = "Super Mario Bros. X"
ClientHeight = 4215
ClientLeft = 0
ClientTop = 0
ClientWidth = 6840
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "frmSplash.frx":0000
ScaleHeight = 281
ScaleMode = 3 'Pixel
ScaleWidth = 456
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.PictureBox LoadCoin
AutoRedraw = -1 'True
AutoSize = -1 'True
BackColor = &H00000000&
BorderStyle = 0 'None
Height = 480
Left = 6240
Picture = "frmSplash.frx":2A7A
ScaleHeight = 32
ScaleMode = 3 'Pixel
ScaleWidth = 28
TabIndex = 0
Top = 3600
Visible = 0 'False
Width = 420
End
Begin VB.Image Image1
Height = 240
Left = 4320
Picture = "frmSplash.frx":2E8E
Top = 3840
Width = 1770
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Refresh
Me.Show
DoEvents
BitBlt GFX.BgHolder.hdc, 0, 0, LoadCoin.Width, LoadCoin.Height, Me.hdc, LoadCoin.Left, LoadCoin.Top, vbSrcCopy
GFX.BgHolder.Refresh
BitBlt LoadCoin.hdc, 0, 0, LoadCoin.Width, LoadCoin.Height, GFX.BgHolder.hdc, 0, 0, vbSrcCopy
BitBlt frmSplash.LoadCoin.hdc, 0, 0, GFX.LoadCoin.ScaleWidth, 32, GFX.LoadCoinMask.hdc, 0, 32 * LoadCoins, vbSrcAnd
BitBlt frmSplash.LoadCoin.hdc, 0, 0, GFX.LoadCoin.ScaleWidth, 32, GFX.LoadCoin.hdc, 0, 32 * LoadCoins, vbSrcPaint
frmSplash.LoadCoin.Refresh
LoadCoin.Visible = True
LoadCoin.Refresh
End Sub