⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.frm

📁 vb+sql2
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frm_printing 
   Caption         =   "通用教材管理系统-打印模块"
   ClientHeight    =   3060
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   4650
   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        =   "Form1.frx":0000
         Left            =   240
         List            =   "Form1.frx":0010
         TabIndex        =   1
         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

 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 + -