上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:3k
源码类别:

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frm_xjlxxz 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "新建类型选择"
  5.    ClientHeight    =   1695
  6.    ClientLeft      =   2760
  7.    ClientTop       =   3750
  8.    ClientWidth     =   3420
  9.    Icon            =   "新建类型选择.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1695
  14.    ScaleMode       =   0  'User
  15.    ScaleWidth      =   3420
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   2  '屏幕中心
  18.    Begin VB.Frame Frame1 
  19.       Caption         =   "新建类型"
  20.       Height          =   1035
  21.       Left            =   60
  22.       TabIndex        =   2
  23.       Top             =   90
  24.       Width           =   3225
  25.       Begin VB.OptionButton Option1 
  26.          Caption         =   "汇 总 表"
  27.          Height          =   240
  28.          Index           =   2
  29.          Left            =   2070
  30.          TabIndex        =   5
  31.          Top             =   480
  32.          Width           =   1020
  33.       End
  34.       Begin VB.OptionButton Option1 
  35.          Caption         =   "文 件"
  36.          Height          =   195
  37.          Index           =   1
  38.          Left            =   1080
  39.          TabIndex        =   4
  40.          Top             =   510
  41.          Width           =   825
  42.       End
  43.       Begin VB.OptionButton Option1 
  44.          Caption         =   "报 表"
  45.          Height          =   225
  46.          Index           =   0
  47.          Left            =   150
  48.          TabIndex        =   3
  49.          Top             =   480
  50.          Value           =   -1  'True
  51.          Width           =   915
  52.       End
  53.    End
  54.    Begin VB.CommandButton command2 
  55.       Cancel          =   -1  'True
  56.       Caption         =   "取消(&C)"
  57.       Height          =   300
  58.       Left            =   2160
  59.       TabIndex        =   1
  60.       Top             =   1260
  61.       Width           =   1120
  62.    End
  63.    Begin VB.CommandButton command1 
  64.       Caption         =   "确定(&O)"
  65.       Default         =   -1  'True
  66.       Height          =   300
  67.       Left            =   960
  68.       TabIndex        =   0
  69.       Top             =   1260
  70.       Width           =   1120
  71.    End
  72. End
  73. Attribute VB_Name = "frm_xjlxxz"
  74. Attribute VB_GlobalNameSpace = False
  75. Attribute VB_Creatable = False
  76. Attribute VB_PredeclaredId = True
  77. Attribute VB_Exposed = False
  78. '***********************************************
  79. '*    模 块 名 称 :新建类型选择
  80. '*    功 能 描 述 :
  81. '*    程序员姓名  :奚俊峰
  82. '*    最后修改人  :奚俊峰
  83. '*    最后修改时间:2002/01/21
  84. '***********************************************
  85. Option Explicit
  86. Private Sub Command1_Click()
  87.     If Option1.Item(0).Value = True Then
  88.         MDI_frame.ml_new_lx = 1
  89.         
  90.     End If
  91.     If Option1.Item(2).Value = True Then
  92.         MDI_frame.ml_new_lx = 7
  93.         
  94.     End If
  95.     If Option1.Item(1).Value = True Then
  96.         MDI_frame.ml_new_lx = 3
  97.     End If
  98.     
  99.     Unload Me
  100. End Sub
  101. Private Sub command2_Click()
  102.     MDI_frame.ml_new_lx = 100
  103.     Unload Me
  104. End Sub