📄 frm_printing.frm
字号:
VERSION 5.00
Begin VB.Form frm_printing
Caption = "通用教材管理系统-打印模块"
ClientHeight = 3060
ClientLeft = 6000
ClientTop = 4380
ClientWidth = 4650
Icon = "frm_printing.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 3060
ScaleWidth = 4650
Begin VB.Frame Frame1
Caption = "选择报表"
Height = 2415
Left = 240
TabIndex = 0
Top = 360
Width = 4215
Begin VB.CommandButton Command2
Caption = "退出(&C)"
Height = 375
Left = 2280
TabIndex = 3
Top = 1440
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "确定(&O)"
Height = 375
Left = 480
TabIndex = 2
Top = 1440
Width = 1215
End
Begin VB.ComboBox Combo1
Height = 315
ItemData = "frm_printing.frx":0442
Left = 240
List = "frm_printing.frx":0458
TabIndex = 1
Text = "请选择"
Top = 360
Width = 3615
End
End
End
Attribute VB_Name = "frm_printing"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Combo1.Text = "请选择" Then
MsgBox "请选择内容"
ElseIf Combo1.Text = "教材入库历史表" Then
DataReport1.Show
ElseIf Combo1.Text = "教材出库历史表" Then
DataReport2.Show
ElseIf Combo1.Text = "教材表" Then
DataReport3.Show
ElseIf Combo1.Text = "班级表" Then
DataReport4.Show
ElseIf Combo1.Text = "系统用户表" Then
DataReport5.Show
ElseIf Combo1.Text = "预订教材表" Then
DataReport6.Show
End If
End Sub
Private Sub Command2_Click()
Unload Me
frm_mainconsole.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -