?? frmsplash.frm
字號:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 3885
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7050
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3885
ScaleWidth = 7050
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Height = 4050
Left = -120
TabIndex = 0
Top = -120
Width = 7200
Begin VB.Timer Timer1
Interval = 800
Left = 6600
Top = 240
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "版權所有 違者必究"
Height = 180
Left = 5520
TabIndex = 5
Top = 3720
Width = 1530
End
Begin VB.Label Label1
Caption = "數據環境:SQL Server 2000"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 2040
TabIndex = 4
Top = 2520
Width = 3495
End
Begin VB.Image Image1
Height = 720
Left = 1320
Picture = "frmSplash.frx":29C12
Top = 720
Width = 720
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "產品版本: 1.0.0Beta"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 2040
TabIndex = 1
Top = 2880
Width = 2505
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "運行平臺:Win9x/NT/Vista"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 2040
TabIndex = 2
Top = 2160
Width = 3165
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
Caption = "加油站管理系統"
BeginProperty Font
Name = "宋體"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 2280
TabIndex = 3
Top = 840
Width = 3465
End
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_KeyPress(KeyAscii As Integer)
Unload Me
End Sub
Private Sub Form_Unload(Cancel As Integer)
Unload Me
Load frmLogin
frmLogin.Show
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub Image1_Click()
Unload Me
End Sub
Private Sub Label1_Click()
Unload Me
End Sub
Private Sub Label2_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -