?? form1.frm
字號:
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00FF0000&
BorderStyle = 1 'Fixed Single
Caption = "Form1"
ClientHeight = 5235
ClientLeft = 45
ClientTop = 435
ClientWidth = 7665
DrawStyle = 1 'Dash
FillColor = &H00E0E0E0&
FillStyle = 0 'Solid
ForeColor = &H00E0E0E0&
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5235
ScaleWidth = 7665
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Interval = 100
Left = 360
Top = 4440
End
Begin VB.Label Label1
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H00FFFFFF&
BackStyle = 0 'Transparent
Caption = "華東交通大學"
BeginProperty Font
Name = "宋體"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 300
Left = 360
OLEDropMode = 1 'Manual
TabIndex = 0
Top = 2040
Width = 1890
End
Begin VB.Label Label2
BorderStyle = 1 'Fixed Single
Height = 3840
Left = 360
TabIndex = 1
Top = 480
Width = 6855
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()
Do
Label1.Left = Label1.Left + 1
Loop While Label1.Left + Label1.Width <= Label2.Left + Label2.Width
Do
Label1.Left = Label1.Left - 1
Loop While Label1.Left >= Label2.Left
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -