📄 frmdataenv.frm
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -