stop.frm

来自「VOD卡拉OK点歌系统源码」· FRM 代码 · 共 47 行

FRM
47
字号
VERSION 5.00
Begin VB.Form stopform 
   BorderStyle     =   0  'None
   Caption         =   "Form3"
   ClientHeight    =   555
   ClientLeft      =   3000
   ClientTop       =   6645
   ClientWidth     =   915
   LinkTopic       =   "Form3"
   MouseIcon       =   "stop.frx":0000
   MousePointer    =   99  'Custom
   Picture         =   "stop.frx":030A
   ScaleHeight     =   555
   ScaleWidth      =   915
   ShowInTaskbar   =   0   'False
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Height          =   615
      Left            =   -15
      MouseIcon       =   "stop.frx":07BF
      MousePointer    =   99  'Custom
      TabIndex        =   0
      Top             =   0
      Width           =   975
   End
End
Attribute VB_Name = "stopform"
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(stopform.hwnd, HWND_TOPMOST, _
0, 0, 0, 0, FLAGS)
End Sub

Private Sub Label1_Click()
'stopform.Visible = False
Call pf.sstop
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?