form2.frm
来自「VOD卡拉OK点歌系统源码」· FRM 代码 · 共 65 行
FRM
65 行
VERSION 5.00
Begin VB.Form Form2
BorderStyle = 0 'None
Caption = "Form2"
ClientHeight = 600
ClientLeft = 2460
ClientTop = 3540
ClientWidth = 1800
LinkTopic = "Form2"
ScaleHeight = 600
ScaleWidth = 1800
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 500
Left = 720
Top = 75
End
Begin VB.Label Label1
Appearance = 0 'Flat
BackColor = &H00008000&
BorderStyle = 1 'Fixed Single
Caption = "下一首"
BeginProperty Font
Name = "楷体_GB2312"
Size = 26.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 615
Left = 0
TabIndex = 0
Top = 0
Width = 1815
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public msg As String
Private Sub Form_Load()
Label1.Caption = msg
End Sub
Private Sub Timer1_Timer()
Dim i As Integer
i = 0
i = i + 1
If (i Mod 2) = 0 Then
Label1.ForeColor = RGB(188, 188, 100)
Else
Label1.ForeColor = RGB(255, 255, 255)
End If
If i = 6 Then
Unload Form2
End If
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?