📄 splash.frm
字号:
VERSION 5.00
Begin VB.Form splash
BackColor = &H00FFFF80&
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 4125
ClientLeft = 0
ClientTop = 0
ClientWidth = 7245
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4125
ScaleWidth = 7245
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
BackColor = &H00FFFF80&
Height = 4050
Left = 0
TabIndex = 0
Top = 0
Width = 7200
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 1500
Left = 3360
Top = 1800
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
BackColor = &H00FFFF80&
Caption = "欢迎使用本电路分析系统"
BeginProperty Font
Name = "宋体"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 3000
TabIndex = 6
Top = 360
Width = 4125
End
Begin VB.Label lblPlatform
Alignment = 2 'Center
AutoSize = -1 'True
BackColor = &H00FFFF80&
Caption = "适用于Windows2000,xp以上平台"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 3240
TabIndex = 5
Top = 1320
Width = 3690
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackColor = &H00FFFF80&
Caption = "版本:v1.0"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 4320
TabIndex = 4
Top = 2160
Width = 1185
End
Begin VB.Label lblCompany
BackColor = &H00FFFF80&
Caption = "哈尔滨工业大学"
Height = 255
Left = 3480
TabIndex = 2
Top = 3120
Width = 3495
End
Begin VB.Label lblCopyright
BackColor = &H00FFFF80&
Caption = "Made By Redsun"
Height = 255
Left = 3480
TabIndex = 1
Top = 2760
Width = 2415
End
Begin VB.Image imgLogo
Height = 3825
Left = 0
Picture = "splash.frx":0000
Stretch = -1 'True
Top = 120
Width = 3015
End
Begin VB.Label lblWarning
Alignment = 1 'Right Justify
BackColor = &H00FFFF80&
Caption = "敬告:请正确按电路规则和本软件使用方法使用!"
Height = 195
Left = 360
TabIndex = 3
Top = 3660
Width = 6765
End
End
End
Attribute VB_Name = "splash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Dim retvalue As Long
Private Sub Form_Load()
retvalue = SetWindowPos(Me.hwnd, -1, Me.CurrentX, Me.CurrentY, 483, 270, &H40)
'置中窗体
Me.Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2
frmoptions.Hide
voltform.Hide
notepad.Hide
currentform.Hide
waveviewer.Hide
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
mapform.Show
Unload splash
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -