bcform.frm
来自「VOD卡拉OK点歌系统源码」· FRM 代码 · 共 49 行
FRM
49 行
VERSION 5.00
Begin VB.Form bcForm
BorderStyle = 0 'None
Caption = "Form3"
ClientHeight = 555
ClientLeft = 0
ClientTop = 0
ClientWidth = 915
LinkTopic = "Form3"
MouseIcon = "bcForm.frx":0000
MousePointer = 99 'Custom
Picture = "bcForm.frx":030A
ScaleHeight = 555
ScaleWidth = 915
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.Label Label1
BackStyle = 0 'Transparent
Height = 615
Left = 0
MouseIcon = "bcForm.frx":080B
MousePointer = 99 'Custom
TabIndex = 0
Top = 0
Width = 975
End
End
Attribute VB_Name = "bcForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Declare Function SetWindowPos Lib "user32" (ByVal h%, ByVal hb%, ByVal x%, ByVal y%, ByVal cx%, ByVal cy%, ByVal f%) As Integer
Private Const SWP_NOMOVE = 2
Private Const SWP_NOSIZE = 1
Private Const FLAGS = SWP_NOMOVE Or SWP_NOSIZE
Private Const HWND_TOPMOST = -1
Private Const HWND_NOTOPMOST = -2
Private Sub Form_Load()
res% = SetWindowPos(bcForm.hwnd, HWND_TOPMOST, _
0, 0, 0, 0, FLAGS)
End Sub
Private Sub Label1_Click()
'bcForm.Visible = False
Call pf.bsong
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?