📄 frmmsger.frm
字号:
VERSION 5.00
Begin VB.Form frmMsger
BorderStyle = 3 'Fixed Dialog
Caption = "自动灌溉系统"
ClientHeight = 1545
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 4905
Icon = "frmMsger.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1545
ScaleWidth = 4905
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 20000
Left = 840
Top = 360
End
Begin VB.CommandButton OKButton
Caption = "确定"
Height = 375
Left = 1200
TabIndex = 0
Top = 990
Width = 1215
End
Begin VB.Image Image1
Height = 1800
Left = 3720
Picture = "frmMsger.frx":030A
Top = 0
Width = 1185
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 945
Left = 30
TabIndex = 1
Top = 120
Width = 3615
End
End
Attribute VB_Name = "frmMsger"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Timer1.Enabled = True
End Sub
Private Sub OKButton_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -