msg.frm
来自「VOD卡拉OK点歌系统源码」· FRM 代码 · 共 74 行
FRM
74 行
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 615
ClientLeft = 0
ClientTop = 0
ClientWidth = 1815
KeyPreview = -1 'True
LinkTopic = "Form1"
ScaleHeight = 615
ScaleWidth = 1815
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 = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public msg As String
Public msgti As Integer
Private Sub Form_Load()
msgti = 1
End Sub
Private Sub Timer1_Timer()
Dim i As Integer
msgti = msgti + 1
If (msgti Mod 2) = 0 Then
Label1.ForeColor = RGB(188, 188, 100)
Else
Label1.ForeColor = RGB(255, 255, 255)
End If
If msgti = 6 Then
Call movenext
Call pf.paly
'Call publicpage
Timer1.Enabled = False
Unload Form1
End If
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?