资源名称:ERPSYS.zip [点击查看]
上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:2k
源码类别:
企业管理
开发平台:
Visual Basic
- 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