📄 find.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Find
BorderStyle = 1 'Fixed Single
Caption = "Loading files..."
ClientHeight = 1545
ClientLeft = 2085
ClientTop = 2250
ClientWidth = 2865
ControlBox = 0 'False
BeginProperty Font
Name = "Times New Roman"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Icon = "find.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
Moveable = 0 'False
Picture = "find.frx":0442
ScaleHeight = 1545
ScaleWidth = 2865
Begin VB.Timer Timer1
Interval = 12
Left = 400
Top = 360
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 255
Left = 120
TabIndex = 1
Top = 720
Width = 2535
_ExtentX = 4471
_ExtentY = 450
_Version = 393216
Appearance = 1
MouseIcon = "find.frx":73D1
Scrolling = 1
End
Begin VB.Label lod_wat
BackStyle = 0 'Transparent
Caption = "Loading..."
BeginProperty Font
Name = "Times New Roman"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 120
TabIndex = 2
Top = 1080
Width = 2535
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "Please wait, building database ..."
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 255
Left = 120
TabIndex = 0
Top = 120
Width = 2655
End
End
Attribute VB_Name = "Find"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim i As Integer
Private Sub Form_Load()
CenterForm Me
If Started = False Then
Unload frmSplash
Started = True
End If
i = 1
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim ctrl As Control
For Each ctrl In Controls
If TypeOf ctrl Is CommandButton Then
ctrl.FontBold = False
End If
Next
End Sub
Private Sub Timer1_Timer()
If i = 100 Then
Unload Me
assist.Left = 10000
assist.Show
contrast.Left = 9500
contrast.Top = 7000
contrast.Hide
Exit Sub
End If
If i = 20 Then
lod_wat.Caption = "Loading player's data..."
lod_wat.ForeColor = &H80&
ElseIf i = 50 Then
lod_wat.Caption = "Loading stand's data..."
lod_wat.ForeColor = &H800080
ElseIf i = 80 Then
lod_wat.Caption = "Loading other data..."
lod_wat.ForeColor = &H800000
End If
i = i + 1
ProgressBar1 = i
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -