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

📄 +_-

📁 酒店宾馆管理系统 包括住房管理 查询客户还有住客人数
💻
字号:
VERSION 5.00
Begin VB.Form frmPassword 
   Caption         =   "宾馆管理系统"
   ClientHeight    =   1140
   ClientLeft      =   4515
   ClientTop       =   4155
   ClientWidth     =   3510
   LinkTopic       =   "Form1"
   ScaleHeight     =   1140
   ScaleWidth      =   3510
   Begin VB.CommandButton cmdOK 
      Caption         =   "确定"
      Default         =   -1  'True
      Height          =   375
      Left            =   1080
      TabIndex        =   2
      Top             =   720
      Width           =   1215
   End
   Begin VB.TextBox txtPassword 
      Height          =   375
      IMEMode         =   3  'DISABLE
      Left            =   1320
      MaxLength       =   10
      PasswordChar    =   "*"
      TabIndex        =   0
      Top             =   120
      Width           =   1935
   End
   Begin VB.Line Line1 
      X1              =   120
      X2              =   3360
      Y1              =   600
      Y2              =   600
   End
   Begin VB.Label lblPassword 
      Caption         =   "请输入密码:"
      Height          =   255
      Left            =   120
      TabIndex        =   1
      Top             =   240
      Width           =   1095
   End
End
Attribute VB_Name = "frmPassword"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
    
    Private Sub cmdOK_Click()
        frmMain.strPassword = txtPassword.Text
        Unload Me
    End Sub

⌨️ 快捷键说明

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