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

📄 frmbbxs.frm

📁 在重庆大学为毕业设计做的维修管理系统 为了赶时间做得不是很好
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmbbxs 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "报表管理"
   ClientHeight    =   2325
   ClientLeft      =   45
   ClientTop       =   435
   ClientWidth     =   4590
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MDIChild        =   -1  'True
   MinButton       =   0   'False
   ScaleHeight     =   2325
   ScaleWidth      =   4590
   Begin VB.CommandButton cmdexit 
      Caption         =   "退出"
      Height          =   495
      Left            =   3000
      TabIndex        =   5
      Top             =   1200
      Width           =   1215
   End
   Begin VB.CommandButton cmdxsbb 
      Caption         =   "显示报表"
      Height          =   495
      Left            =   3000
      TabIndex        =   4
      Top             =   360
      Width           =   1215
   End
   Begin VB.Frame Frame1 
      Height          =   2175
      Left            =   120
      TabIndex        =   0
      Top             =   0
      Width           =   2415
      Begin VB.OptionButton optyg 
         Caption         =   "员工情况表"
         Height          =   255
         Left            =   240
         TabIndex        =   3
         Top             =   1680
         Width           =   1575
      End
      Begin VB.OptionButton optbm 
         Caption         =   "各部门报修情况表"
         Height          =   375
         Left            =   240
         TabIndex        =   2
         Top             =   1020
         Width           =   1935
      End
      Begin VB.OptionButton optlj 
         Caption         =   "零件使用情况表"
         Height          =   375
         Left            =   240
         TabIndex        =   1
         Top             =   360
         Width           =   1695
      End
   End
End
Attribute VB_Name = "frmbbxs"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()

End Sub

Private Sub cmdexit_Click()
    Unload Me
End Sub

Private Sub cmdxsbb_Click()
    If optlj.Value = True Then
       DataReport1.Show
    End If
    
    If optbm.Value = True Then
       DataReport2.Show
    End If
    
    If optyg.Value = True Then
       DataReport3.Show
    End If
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -