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

📄 fm_msg.frm

📁 一个简单的酒店管理系统 用VB.net+SQL2000实现
💻 FRM
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -