?? frmsplash.frm
字號:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4245
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7380
ClipControls = 0 'False
ControlBox = 0 'False
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4245
ScaleWidth = 7380
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Frame Frame1
Height = 4050
Left = 120
TabIndex = 0
Top = 120
Width = 7080
Begin VB.Timer Timer1
Interval = 2000
Left = 4560
Top = 960
End
Begin VB.Label lblWarning
Caption = " 版VB編譯系統常常有故障,而且常出錯!僅依此告,也表憤概!"
Height = 195
Index = 2
Left = 120
TabIndex = 9
Top = 3720
Width = 6765
End
Begin VB.Label lblWarning
Caption = " 如果你實在想找人負責,可以去找微軟(中國)公司,因為它所提供的盜"
Height = 195
Index = 1
Left = 120
TabIndex = 8
Top = 3480
Width = 6765
End
Begin VB.Image imgLogo
Height = 2385
Left = 360
Stretch = -1 'True
Top = 360
Width = 1815
End
Begin VB.Label lblCopyright
Caption = "版權沒有(C) 2001年"
Height = 255
Left = 4440
TabIndex = 4
Top = 2640
Width = 2415
End
Begin VB.Label lblCompany
Caption = "包彥 歡迎拷貝"
Height = 255
Left = 4440
TabIndex = 3
Top = 3000
Width = 2415
End
Begin VB.Label lblWarning
Caption = "警告:本軟件僅為測試軟件,如果因為本軟件燒毀你的計算機,本人概不負責!"
Height = 195
Index = 0
Left = 120
TabIndex = 2
Top = 3240
Width = 6765
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "版本"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 6240
TabIndex = 5
Top = 2400
Width = 510
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "Windows 平臺"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 5160
TabIndex = 6
Top = 2040
Width = 1590
End
Begin VB.Label lblProductName
AutoSize = -1 'True
Caption = "產品"
BeginProperty Font
Name = "宋體"
Size = 32.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 645
Left = 2280
TabIndex = 7
Top = 960
Width = 2430
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
Caption = "授權"
Height = 255
Left = 120
TabIndex = 1
Top = 240
Width = 6855
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
frmMenu.Show
End Sub
Private Sub Form_Load()
lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
lblProductName.Caption = App.Title
lblLicenseTo.Caption = lblLicenseTo.Caption + "給所有測試人員使用"
DE.Con.Open
End Sub
Private Sub Frame1_Click()
Unload Me
frmLogin.Show
End Sub
Private Sub Timer1_Timer()
Unload Me
frmLogin.Show
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -