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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frm_dklxxz 
  3.    Caption         =   "打开类型选择"
  4.    ClientHeight    =   1755
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   3375
  8.    Icon            =   "打开类型选择.frx":0000
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1755
  13.    ScaleWidth      =   3375
  14.    StartUpPosition =   1  '所有者中心
  15.    Begin VB.CommandButton Command2 
  16.       Cancel          =   -1  'True
  17.       Caption         =   "取消(&C)"
  18.       Height          =   300
  19.       Left            =   2175
  20.       TabIndex        =   4
  21.       Top             =   1380
  22.       Width           =   1120
  23.    End
  24.    Begin VB.CommandButton Command1 
  25.       Caption         =   "确定(&O)"
  26.       Default         =   -1  'True
  27.       Height          =   300
  28.       Left            =   975
  29.       TabIndex        =   3
  30.       Top             =   1380
  31.       Width           =   1120
  32.    End
  33.    Begin VB.Frame Frame1 
  34.       Caption         =   "打开类型"
  35.       Height          =   1035
  36.       Left            =   60
  37.       TabIndex        =   0
  38.       Top             =   90
  39.       Width           =   3255
  40.       Begin VB.OptionButton Option1 
  41.          Caption         =   "  文 件"
  42.          Height          =   255
  43.          Index           =   2
  44.          Left            =   1710
  45.          TabIndex        =   2
  46.          Top             =   450
  47.          Width           =   1065
  48.       End
  49.       Begin VB.OptionButton Option1 
  50.          Caption         =   "  报 表"
  51.          Height          =   255
  52.          Index           =   0
  53.          Left            =   330
  54.          TabIndex        =   1
  55.          Top             =   450
  56.          Value           =   -1  'True
  57.          Width           =   1095
  58.       End
  59.    End
  60. End
  61. Attribute VB_Name = "frm_dklxxz"
  62. Attribute VB_GlobalNameSpace = False
  63. Attribute VB_Creatable = False
  64. Attribute VB_PredeclaredId = True
  65. Attribute VB_Exposed = False
  66. '***********************************************
  67. '*    模 块 名 称 :打开类型选择
  68. '*    功 能 描 述 :
  69. '*    程序员姓名  :奚俊峰
  70. '*    最后修改人  :奚俊峰
  71. '*    最后修改时间:2002/01/21
  72. '***********************************************
  73. Option Explicit
  74. Private Sub Command1_Click()
  75.     If Option1(0).Value = True Then MDI_frame.ml_open_lx = 1
  76.     If Option1(2).Value = True Then MDI_frame.ml_open_lx = 3
  77.     Unload Me
  78. End Sub
  79. Private Sub command2_Click()
  80.     Unload Me
  81. End Sub