资源名称:ERPSYS.zip [点击查看]
上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:3k
源码类别:
企业管理
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form frm_xjlxxz
- BorderStyle = 3 'Fixed Dialog
- Caption = "新建类型选择"
- ClientHeight = 1695
- ClientLeft = 2760
- ClientTop = 3750
- ClientWidth = 3420
- Icon = "新建类型选择.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1695
- ScaleMode = 0 'User
- ScaleWidth = 3420
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 '屏幕中心
- Begin VB.Frame Frame1
- Caption = "新建类型"
- Height = 1035
- Left = 60
- TabIndex = 2
- Top = 90
- Width = 3225
- Begin VB.OptionButton Option1
- Caption = "汇 总 表"
- Height = 240
- Index = 2
- Left = 2070
- TabIndex = 5
- Top = 480
- Width = 1020
- End
- Begin VB.OptionButton Option1
- Caption = "文 件"
- Height = 195
- Index = 1
- Left = 1080
- TabIndex = 4
- Top = 510
- Width = 825
- End
- Begin VB.OptionButton Option1
- Caption = "报 表"
- Height = 225
- Index = 0
- Left = 150
- TabIndex = 3
- Top = 480
- Value = -1 'True
- Width = 915
- End
- End
- Begin VB.CommandButton command2
- Cancel = -1 'True
- Caption = "取消(&C)"
- Height = 300
- Left = 2160
- TabIndex = 1
- Top = 1260
- Width = 1120
- End
- Begin VB.CommandButton command1
- Caption = "确定(&O)"
- Default = -1 'True
- Height = 300
- Left = 960
- TabIndex = 0
- Top = 1260
- Width = 1120
- End
- End
- Attribute VB_Name = "frm_xjlxxz"
- 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.Item(0).Value = True Then
- MDI_frame.ml_new_lx = 1
- End If
- If Option1.Item(2).Value = True Then
- MDI_frame.ml_new_lx = 7
- End If
- If Option1.Item(1).Value = True Then
- MDI_frame.ml_new_lx = 3
- End If
- Unload Me
- End Sub
- Private Sub command2_Click()
- MDI_frame.ml_new_lx = 100
- Unload Me
- End Sub