?? frmsplash.frm
字號:
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H00E8F9EA&
BorderStyle = 1 'Fixed Single
ClientHeight = 4245
ClientLeft = 225
ClientTop = 1380
ClientWidth = 7380
ClipControls = 0 'False
ControlBox = 0 'False
DrawStyle = 5 'Transparent
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4245
ScaleWidth = 7380
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
BackColor = &H00D7F9EA&
Height = 4050
Left = 120
TabIndex = 0
Top = 0
Width = 7080
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "用友軟件"
Height = 180
Left = 5880
TabIndex = 7
Top = 3480
Width = 720
End
Begin VB.Image Image1
Height = 480
Left = 5160
Picture = "frmSplash.frx":000C
Top = 3360
Width = 480
End
Begin VB.Image imgLogo
Height = 2385
Left = 360
Picture = "frmSplash.frx":044E
Stretch = -1 'True
Top = 795
Width = 1815
End
Begin VB.Label lblCopyright
BackStyle = 0 'Transparent
Caption = "黑龍江用友公司版權所有"
Height = 255
Left = 1080
TabIndex = 2
Top = 3600
Width = 2415
End
Begin VB.Label lblWarning
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "警告"
Height = 180
Left = 360
TabIndex = 1
Top = 3600
Width = 360
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "版本1.0"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 5835
TabIndex = 3
Top = 2400
Width = 915
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "平臺WIN2000"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 5295
TabIndex = 4
Top = 2040
Width = 1455
End
Begin VB.Label lblProductName
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "益華圖書財務接口程序"
BeginProperty Font
Name = "宋體"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 2520
TabIndex = 6
Top = 1440
Width = 3000
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "黑龍江用友公司產品"
BeginProperty Font
Name = "宋體"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 2355
TabIndex = 5
Top = 705
Width = 3375
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_Load()
lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
'lblProductName.Caption = App.Title
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub lblLicenseTo_Click()
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -