⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 etykq.frm

📁 vod 点歌系统,VB开发,操作相对比较简单.
💻 FRM
字号:
VERSION 5.00
Begin VB.Form EtYKQ 
   BackColor       =   &H80000002&
   BorderStyle     =   1  'Fixed Single
   Caption         =   "接收遥控器输入"
   ClientHeight    =   915
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4590
   Icon            =   "EtYKQ.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Moveable        =   0   'False
   ScaleHeight     =   915
   ScaleWidth      =   4590
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Interval        =   1000
      Left            =   60
      Top             =   60
   End
   Begin VB.Label InputLab 
      Alignment       =   2  'Center
      BackStyle       =   0  'Transparent
      BeginProperty Font 
         Name            =   "幼圆"
         Size            =   21.75
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   525
      Left            =   90
      TabIndex        =   0
      Top             =   180
      Width           =   4425
   End
   Begin VB.Shape Shape1 
      BorderColor     =   &H0000FFFF&
      FillColor       =   &H0000FFFF&
      Height          =   855
      Left            =   30
      Top             =   30
      Width           =   4515
   End
End
Attribute VB_Name = "EtYKQ"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Public CheckKey As Integer

Public Sub ShowYKQ(ShowMsg As String, ShowFlag As Boolean)
  InputLab = ShowMsg
  If Not ShowFlag Then
    Timer1.Enabled = False
  End If
  Me.Show 1
End Sub

Private Sub Form_KeyPress(KeyAscii As Integer)
  CheckKey = KeyAscii
  Unload Me
End Sub

Private Sub Timer1_Timer()
  Timer1.Enabled = False
  Unload Me
End Sub

⌨️ 快捷键说明

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