form27.frm
来自「利用VB编写的一个完整的酒店管理程序,支持双数据库!」· FRM 代码 · 共 49 行
FRM
49 行
VERSION 5.00
Begin VB.Form Form27
BackColor = &H00FFFF80&
BorderStyle = 4 'Fixed ToolWindow
Caption = "显示房态图"
ClientHeight = 1575
ClientLeft = 45
ClientTop = 315
ClientWidth = 2325
LinkTopic = "Form27"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1575
ScaleWidth = 2325
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton Command2
Caption = "模式2"
Height = 495
Left = 120
TabIndex = 1
Top = 840
Width = 2055
End
Begin VB.CommandButton Command1
Caption = "模式1"
Height = 495
Left = 120
TabIndex = 0
Top = 240
Width = 2055
End
End
Attribute VB_Name = "Form27"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'FIXIT: 使用 Option Explicit 可以避免隐式创建 Variant 类型的变量 FixIT90210ae-R383-H1984
Private Sub Command1_Click()
Unload Me
Form1.Show
End Sub
Private Sub Command2_Click()
Unload Me
房态图FORM.Show
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?