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

📄 frmrpt.frm

📁 这是我自己编写的关于创建和修改自己定义的数据库
💻 FRM
字号:
VERSION 5.00
Object = "{E95A2510-F3D1-416D-823B-4F840FE98091}#3.0#0"; "Command.ocx"
Begin VB.Form frmRpt 
   Caption         =   "Form11"
   ClientHeight    =   7920
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   5280
   BeginProperty Font 
      Name            =   "宋体"
      Size            =   10.5
      Charset         =   134
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   LinkTopic       =   "Form11"
   ScaleHeight     =   7920
   ScaleWidth      =   5280
   StartUpPosition =   2  '屏幕中心
   Begin VB.OptionButton Option1 
      Caption         =   "电台报表"
      Height          =   375
      Index           =   1
      Left            =   2040
      TabIndex        =   3
      Top             =   1080
      Width           =   1335
   End
   Begin CSCommand.Command Command2 
      Height          =   495
      Left            =   2520
      TabIndex        =   2
      Top             =   6360
      Width           =   1215
      _ExtentX        =   2143
      _ExtentY        =   873
      IconAlign       =   0
      Icon            =   "frmRpt.frx":0000
      Caption         =   "返回"
      BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
   End
   Begin CSCommand.Command Command1 
      Height          =   495
      Left            =   1200
      TabIndex        =   1
      Top             =   6360
      Width           =   1215
      _ExtentX        =   2143
      _ExtentY        =   873
      IconAlign       =   0
      Icon            =   "frmRpt.frx":001C
      Caption         =   "确定"
      BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
   End
   Begin VB.OptionButton Option1 
      Caption         =   "整机报表"
      Height          =   375
      Index           =   0
      Left            =   2040
      TabIndex        =   0
      Top             =   720
      Width           =   1335
   End
End
Attribute VB_Name = "frmRpt"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
 
Private RptType As Byte

Private Sub Command1_Click()
Select Case RptType
            Case 0
                mainRpt.Show
                
            Case 1
                
End Select
frmRpt.Visible = False
End Sub

Private Sub Command2_Click()
Unload Me
Form1.Show

End Sub

Private Sub Option1_Click(Index As Integer)
RptType = Index
End Sub
Private Sub Form_Unload(Cancel As Integer)
Unload Me
Form1.Show
End Sub

⌨️ 快捷键说明

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