form1.frm

来自「vb源码大全」· FRM 代码 · 共 43 行

FRM
43
字号
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   3705
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4950
   LinkTopic       =   "Form1"
   ScaleHeight     =   3705
   ScaleWidth      =   4950
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton cmdTotalReport 
      Caption         =   "显示总价报表"
      Height          =   615
      Left            =   1080
      TabIndex        =   1
      Top             =   2040
      Width           =   2055
   End
   Begin VB.CommandButton cmdShow 
      Caption         =   "客户报表"
      Height          =   615
      Left            =   1080
      TabIndex        =   0
      Top             =   1080
      Width           =   2055
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub cmdShow_Click()
    DataReport1.Show
End Sub

Private Sub cmdTotalReport_Click()
    DataReport2.Show
End Sub

⌨️ 快捷键说明

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