📄 choicebaobiao.frm
字号:
VERSION 5.00
Begin VB.Form ChoiceBaoBiao
BorderStyle = 3 'Fixed Dialog
Caption = "选择报表"
ClientHeight = 1395
ClientLeft = 45
ClientTop = 330
ClientWidth = 3180
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1395
ScaleWidth = 3180
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.ComboBox Combo1
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
ItemData = "ChoiceBaoBiao.frx":0000
Left = 240
List = "ChoiceBaoBiao.frx":0010
Style = 2 'Dropdown List
TabIndex = 2
Top = 360
Width = 2775
End
Begin VB.CommandButton CmdCancel
Caption = "退出"
Height = 375
Left = 1920
TabIndex = 1
Top = 840
Width = 975
End
Begin VB.CommandButton CmdOk
Caption = "开始报表"
Height = 375
Left = 360
TabIndex = 0
Top = 840
Width = 975
End
Begin VB.Label Label1
Caption = "请在列表框中选择一个报表"
Height = 255
Left = 240
TabIndex = 3
Top = 120
Width = 2415
End
End
Attribute VB_Name = "ChoiceBaoBiao"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdCancel_Click()
Unload Me
End Sub
Private Sub CmdOk_Click()
Dim idx As Integer
idx = Combo1.ListIndex
Module2.ZhangBuPrint (idx)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -