fm_msg.frm

来自「该系统为酒店日常管理提供了很大的方便」· FRM 代码 · 共 58 行

FRM
58
字号
VERSION 5.00
Begin VB.Form fm_msg 
   ClientHeight    =   1500
   ClientLeft      =   60
   ClientTop       =   60
   ClientWidth     =   5220
   ControlBox      =   0   'False
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1500
   ScaleWidth      =   5220
   StartUpPosition =   2  'CenterScreen
   Begin VB.Timer Timer1 
      Left            =   90
      Top             =   945
   End
   Begin VB.Frame Frame1 
      Height          =   1230
      Left            =   135
      TabIndex        =   0
      Top             =   90
      Width           =   4965
      Begin VB.Label Label1 
         Alignment       =   2  'Center
         ForeColor       =   &H00FF00FF&
         Height          =   870
         Left            =   360
         TabIndex        =   1
         Top             =   225
         Width           =   4290
      End
   End
End
Attribute VB_Name = "fm_msg"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Sub MAIN(t_xx As String)
  Label1.Caption = t_xx
End Sub

Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Unload Me
End Sub


Private Sub Form_Load()
Randomize
Timer1.Interval = Int((10 * Rnd) + 1) * 300
End Sub

Private Sub Timer1_Timer()
Unload Me
End Sub

⌨️ 快捷键说明

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