📄 tixing.frm
字号:
VERSION 5.00
Begin VB.Form tixing
BackColor = &H000000FF&
Caption = "订房到期提醒"
ClientHeight = 1440
ClientLeft = 60
ClientTop = 345
ClientWidth = 3030
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1440
ScaleWidth = 3030
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Left = 2640
Top = 840
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 255
Left = 1080
TabIndex = 1
Top = 960
Width = 735
End
Begin VB.Label lbl_message
BackColor = &H000000FF&
Caption = "Label1"
ForeColor = &H000000FF&
Height = 375
Left = 480
TabIndex = 0
Top = 240
Width = 2055
End
End
Attribute VB_Name = "tixing"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
'窗口居中
Me.Left = (Screen.Width - Me.Width) / 2
Me.Top = (Screen.Height - Me.Height) / 2 - 550
lbl_message.Caption = "房间号为" + m_houseno + "的订房时间到期!"
Timer1.Enabled = True
Timer1.Interval = 3000
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -