📄 loadform.frm
字号:
VERSION 5.00
Begin VB.Form loadform
BorderStyle = 0 'None
Caption = "Dialog Caption"
ClientHeight = 4155
ClientLeft = 3615
ClientTop = 2550
ClientWidth = 7680
Icon = "loadform.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4155
ScaleWidth = 7680
ShowInTaskbar = 0 'False
Begin VB.Frame Frame1
BackColor = &H00FF8080&
BorderStyle = 0 'None
Height = 4155
Left = 0
TabIndex = 0
Top = 0
Width = 7665
Begin VB.Timer Timer2
Interval = 3000
Left = 840
Top = 480
End
Begin VB.CheckBox Check1
BackColor = &H00FF8080&
Caption = "更新数据库(如果数据库已经被您更改过,请您选择此项,但这可能要花几分钟时间)"
ForeColor = &H00000040&
Height = 255
Left = 360
TabIndex = 10
Top = 3360
Width = 7095
End
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 1
Left = 360
Top = 720
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "北京市公交车查询系统!"
BeginProperty Font
Name = "隶书"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FF00&
Height = 480
Left = 1440
TabIndex = 9
Top = 360
Width = 5205
End
Begin VB.Label lblLicenseTo
BackStyle = 0 'Transparent
Caption = "欢迎您进入"
BeginProperty Font
Name = "隶书"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFF00&
Height = 255
Left = 120
TabIndex = 8
Top = 0
Width = 6855
End
Begin VB.Label lblProductName
BackStyle = 0 'Transparent
Caption = "由于时间问题,本系统所需数据库只输入了一部分!"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 300
Index = 0
Left = 2520
TabIndex = 7
Top = 1200
Width = 19995
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "冲击波系列软件"
BeginProperty Font
Name = "隶书"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 300
Left = 4755
TabIndex = 6
Top = 2160
Width = 2100
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "版本:1.0"
BeginProperty Font
Name = "隶书"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 300
Left = 5130
TabIndex = 5
Top = 3000
Width = 1200
End
Begin VB.Label lblstatus
BackStyle = 0 'Transparent
Caption = "Loading..."
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H0080FFFF&
Height = 315
Left = 120
TabIndex = 4
Top = 3720
Width = 6855
End
Begin VB.Label lblCompany
BackStyle = 0 'Transparent
Caption = "联系方式:lubentao@163.net"
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 4800
TabIndex = 3
Top = 2760
Width = 2415
End
Begin VB.Label lblCopyright
BackStyle = 0 'Transparent
Caption = "中国矿业大学北京校区资源硕03-2"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 4560
TabIndex = 2
Top = 2520
Width = 2775
End
Begin VB.Image imgLogo
Height = 2385
Left = 360
Picture = "loadform.frx":1232
Stretch = -1 'True
Top = 600
Width = 1815
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "您自己可以对数据库中进行补充或者跟作者联系!"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 255
Left = 2520
TabIndex = 1
Top = 1440
Width = 5055
End
End
End
Attribute VB_Name = "loadform"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim bt As Boolean
Private Sub Check1_Click()
If Check1.Value = 0 Then
Form1.IsBeginS = True
Else
Form1.IsBeginS = False
End If
End Sub
Private Sub Form_Load()
bt = True
End Sub
Private Sub Timer1_Timer()
bt = False
If Check1.Value = 0 Then
Form1.IsBeginS = True
Else
Form1.IsBeginS = False
End If
Load Form1
Form1.Show
Timer1.Enabled = False
End Sub
Private Sub Timer2_Timer()
Timer1.Enabled = True
Timer2.Enabled = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -