frmdataenv.frm
来自「Visual Basic程序设计基础》-杨小影-源代码」· FRM 代码 · 共 53 行
FRM
53 行
VERSION 5.00
Begin VB.Form frmDataEnv
Caption = "Form1"
ClientHeight = 2115
ClientLeft = 60
ClientTop = 345
ClientWidth = 3645
LinkTopic = "Form1"
ScaleHeight = 2115
ScaleWidth = 3645
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton CmdExport
Caption = "导出(&E)"
Height = 405
Left = 907
TabIndex = 2
Top = 1410
Width = 1830
End
Begin VB.CommandButton CmdPrint
Caption = "打印(&P)"
Height = 405
Left = 907
TabIndex = 1
Top = 757
Width = 1830
End
Begin VB.CommandButton CmdPreview
Caption = "预览(&V)"
Height = 405
Left = 907
TabIndex = 0
Top = 105
Width = 1830
End
End
Attribute VB_Name = "frmDataEnv"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdExport_Click()
DataReport1.ExportReport , , True, True
End Sub
Private Sub CmdPreview_Click()
DataReport1.Show
End Sub
Private Sub CmdPrint_Click()
DataReport1.PrintReport True
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?