?? frmsplash.frm
字號:
VERSION 5.00
Object = "{C7AE747C-B9E4-11D7-B0E3-D8165009166E}#7.0#0"; "XPFORM.OCX"
Object = "{D14FD2DC-9318-11D3-9CB7-000021ECAA5D}#5.0#0"; "MOVINGCHAR.OCX"
Begin VB.Form frmsplash
BackColor = &H00C0E0FF&
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 0
ClientTop = 0
ClientWidth = 4680
BeginProperty Font
Name = "宋體"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H008080FF&
Icon = "frmsplash.frx":0000
LinkTopic = "Form1"
Picture = "frmsplash.frx":1272
ScaleHeight = 3195
ScaleWidth = 4680
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Interval = 1000
Left = 3240
Top = 1440
End
Begin MovingChar.MovingText MovingText1
Height = 495
Left = 120
TabIndex = 0
ToolTipText = "天比我大,地比我寬,天地之間,我要領先"
Top = 480
Width = 4455
_ExtentX = 7858
_ExtentY = 873
MsgChar = "觸目橫斜千萬朵,賞心只有兩三枝"
CharColor = 16711680
BackColor = 12648447
MousePointer = 0
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋體"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin XP窗體控件.XPForm XPForm1
Height = 810
Left = 1680
Top = 0
Width = 1920
_ExtentX = 3387
_ExtentY = 1429
Caption = ""
ShowMaxButton = 0 'False
ShowMinButton = 0 'False
ShowHelpButton = 0 'False
Icon = "frmsplash.frx":7EA4
AlwaysOnTop = 0 'False
ShowFormSize = 0 'False
End
Begin VB.Line lnProcess
BorderColor = &H00C00000&
BorderWidth = 5
X1 = 480
X2 = 720
Y1 = 2040
Y2 = 2040
End
End
Attribute VB_Name = "frmsplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Unload Me
frmLogin.Show
End Sub
Private Sub Form_Load()
XPForm1.Make
Timer1.Enabled = True
Call ExplodeForm(Me, 6000)
'bar.Visible = True
End Sub
Private Sub Form_Unload(Cancel As Integer)
Call ImplodeForm(Me, 6000)
End Sub
Private Sub Timer1_Timer()
lnProcess.X2 = lnProcess.X2 + 100
If (lnProcess.X2 - lnProcess.X1) > 3500 Then
Unload Me
frmLogin.Show
Beep
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -