?? dcolor.frm
字號:
VERSION 5.00
Begin VB.Form dColor
BorderStyle = 0 'None
ClientHeight = 3090
ClientLeft = 5340
ClientTop = 4380
ClientWidth = 4680
Enabled = 0 'False
LinkTopic = "Form1"
MDIChild = -1 'True
ScaleHeight = 3090
ScaleWidth = 4680
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 40
Left = 0
Top = 1800
End
Begin VB.Image Image2
Height = 1365
Left = 3240
Picture = "dColor.frx":0000
Top = 0
Width = 1380
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "歡 迎 進 入 學 生 信 息 管 理 系 統"
ForeColor = &H80000008&
Height = 420
Left = 0
TabIndex = 0
Top = 2640
Width = 4305
End
Begin VB.Image Image1
Height = 1455
Left = 0
Picture = "dColor.frx":625E
Stretch = -1 'True
Top = 0
Width = 2415
End
End
Attribute VB_Name = "dColor"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim i As Long
Private Sub Form_Load()
Label1.ForeColor = &H8000000E
Label1.FontSize = 12
Label1.AutoSize = True
i = Image2.Width
End Sub
Private Sub Form_Resize()
Image1.Top = 0
Image1.Left = 0
Image1.Height = Me.Height
Image1.Width = Me.Width
Image2.Top = Me.Height - Image2.Height
Image2.Left = Me.Width - Image2.Width
Label1.Top = Me.Height - Label1.Height - 100
End Sub
Private Sub Timer1_Timer()
i = i + 50
Label1.Left = Me.Width - i
If i > Me.Width + Label1.Width Then
i = Image2.Width
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -