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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
  3. Begin VB.Form frm_save_txt 
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    Caption         =   "保存为文本文件"
  6.    ClientHeight    =   2475
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   4440
  10.    Icon            =   "保存为文本文件.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2475
  15.    ScaleWidth      =   4440
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   1  '所有者中心
  18.    Begin MSComDlg.CommonDialog CommonDialog1 
  19.       Left            =   90
  20.       Top             =   1920
  21.       _ExtentX        =   847
  22.       _ExtentY        =   847
  23.       _Version        =   393216
  24.    End
  25.    Begin VB.CommandButton Command3 
  26.       Caption         =   "取消(&C)"
  27.       Height          =   300
  28.       Left            =   3210
  29.       TabIndex        =   8
  30.       Top             =   2070
  31.       Width           =   1120
  32.    End
  33.    Begin VB.CommandButton Command2 
  34.       Caption         =   "确定(&O)"
  35.       Height          =   300
  36.       Left            =   1980
  37.       TabIndex        =   7
  38.       Top             =   2070
  39.       Width           =   1120
  40.    End
  41.    Begin VB.CommandButton Command1 
  42.       Caption         =   "..."
  43.       Height          =   300
  44.       Left            =   4020
  45.       TabIndex        =   6
  46.       Top             =   1590
  47.       Width           =   300
  48.    End
  49.    Begin VB.TextBox Text1 
  50.       Height          =   300
  51.       Left            =   810
  52.       TabIndex        =   5
  53.       Top             =   1590
  54.       Width           =   3195
  55.    End
  56.    Begin VB.Frame Frame1 
  57.       Caption         =   "文本文件格式"
  58.       Height          =   1365
  59.       Left            =   90
  60.       TabIndex        =   0
  61.       Top             =   90
  62.       Width           =   4245
  63.       Begin VB.OptionButton Option3 
  64.          Caption         =   "单元以逗号分隔"
  65.          Height          =   375
  66.          Left            =   240
  67.          TabIndex        =   3
  68.          Top             =   870
  69.          Width           =   2655
  70.       End
  71.       Begin VB.OptionButton Option2 
  72.          Caption         =   "单元以两个连续空格分隔"
  73.          Height          =   495
  74.          Left            =   240
  75.          TabIndex        =   2
  76.          Top             =   510
  77.          Width           =   2895
  78.       End
  79.       Begin VB.OptionButton Option1 
  80.          Caption         =   "单元以Tab符(制表符)分隔"
  81.          Height          =   375
  82.          Left            =   240
  83.          TabIndex        =   1
  84.          Top             =   240
  85.          Value           =   -1  'True
  86.          Width           =   3735
  87.       End
  88.    End
  89.    Begin VB.Label Label1 
  90.       Caption         =   "文件名:"
  91.       Height          =   255
  92.       Left            =   120
  93.       TabIndex        =   4
  94.       Top             =   1620
  95.       Width           =   735
  96.    End
  97. End
  98. Attribute VB_Name = "frm_save_txt"
  99. Attribute VB_GlobalNameSpace = False
  100. Attribute VB_Creatable = False
  101. Attribute VB_PredeclaredId = True
  102. Attribute VB_Exposed = False
  103. '***********************************************
  104. '*    模 块 名 称 :保存为文本文件
  105. '*    功 能 描 述 :
  106. '*    程序员姓名  :奚俊峰
  107. '*    最后修改人  :奚俊峰
  108. '*    最后修改时间:2002/01/21
  109. '***********************************************
  110. Option Explicit
  111. Private Sub Command1_Click()
  112.     Dim ll_return As Long
  113.     CommonDialog1.DialogTitle = "请输入您要保存的文本文件名称"
  114.     CommonDialog1.Filter = "文本文件(*.txt)|*.txt|"
  115.     CommonDialog1.ShowSave
  116.     frm_save_txt.Text1.Text = CommonDialog1.FileName
  117.     CommonDialog1.FileName = ""
  118. End Sub
  119. Private Sub command2_Click()
  120.     MDI_frame.ms_txt_file = Trim(Text1.Text)
  121.     If Option1.Value = True Then MDI_frame.ml_txt_format = 0
  122.     If Option2.Value = True Then MDI_frame.ml_txt_format = 1
  123.     If Option3.Value = True Then MDI_frame.ml_txt_format = 2
  124.     Unload Me
  125. End Sub
  126. Private Sub Command3_Click()
  127.     Unload Me
  128. End Sub