📄 frmdatastat.frm
字号:
VERSION 5.00
Begin VB.Form FrmDataStat
BorderStyle = 3 'Fixed Dialog
Caption = "数据统计"
ClientHeight = 3195
ClientLeft = 45
ClientTop = 615
ClientWidth = 4680
LinkTopic = "Form4"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3195
ScaleWidth = 4680
ShowInTaskbar = 0 'False
WindowState = 2 'Maximized
Begin VB.Menu mnufile
Caption = "文件(&F)"
Begin VB.Menu mnuexit
Caption = "关闭(&E)"
End
End
End
Attribute VB_Name = "FrmDataStat"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub mnuexit_Click()
If MsgBox("退出数据统计系统?", vbOKCancel) = vbOK Then
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -