📄
字号:
VERSION 5.00
Begin VB.Form frm_dklxxz
Caption = "打开类型选择"
ClientHeight = 1755
ClientLeft = 60
ClientTop = 345
ClientWidth = 3375
Icon = "打开类型选择.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1755
ScaleWidth = 3375
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton Command2
Cancel = -1 'True
Caption = "取消(&C)"
Height = 300
Left = 2175
TabIndex = 4
Top = 1380
Width = 1120
End
Begin VB.CommandButton Command1
Caption = "确定(&O)"
Default = -1 'True
Height = 300
Left = 975
TabIndex = 3
Top = 1380
Width = 1120
End
Begin VB.Frame Frame1
Caption = "打开类型"
Height = 1035
Left = 60
TabIndex = 0
Top = 90
Width = 3255
Begin VB.OptionButton Option1
Caption = " 文 件"
Height = 255
Index = 2
Left = 1710
TabIndex = 2
Top = 450
Width = 1065
End
Begin VB.OptionButton Option1
Caption = " 报 表"
Height = 255
Index = 0
Left = 330
TabIndex = 1
Top = 450
Value = -1 'True
Width = 1095
End
End
End
Attribute VB_Name = "frm_dklxxz"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'***********************************************
'* 模 块 名 称 :打开类型选择
'* 功 能 描 述 :
'* 程序员姓名 :奚俊峰
'* 最后修改人 :奚俊峰
'* 最后修改时间:2002/01/21
'***********************************************
Option Explicit
Private Sub Command1_Click()
If Option1(0).Value = True Then MDI_frame.ml_open_lx = 1
If Option1(2).Value = True Then MDI_frame.ml_open_lx = 3
Unload Me
End Sub
Private Sub command2_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -