AddEditDir.frm
上传用户:guantou168
上传日期:2015-06-25
资源大小:74k
文件大小:2k
源码类别:

Ftp服务器

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form AddEditDir 
  3.    AutoRedraw      =   -1  'True
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   $"AddEditDir.frx":0000
  6.    ClientHeight    =   1185
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   4605
  10.    ControlBox      =   0   'False
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   1185
  15.    ScaleWidth      =   4605
  16.    StartUpPosition =   1  '所有者中心
  17.    Begin VB.CommandButton AddEditCnx 
  18.       Caption         =   "取消"
  19.       Height          =   375
  20.       Left            =   3240
  21.       TabIndex        =   4
  22.       Top             =   600
  23.       Width           =   975
  24.    End
  25.    Begin VB.CommandButton AddEditDone 
  26.       Caption         =   "完成"
  27.       Default         =   -1  'True
  28.       Height          =   375
  29.       Left            =   1800
  30.       TabIndex        =   3
  31.       Top             =   600
  32.       Width           =   975
  33.    End
  34.    Begin VB.CommandButton BrowseDir 
  35.       Caption         =   "浏览"
  36.       Height          =   375
  37.       Left            =   360
  38.       TabIndex        =   2
  39.       Top             =   600
  40.       Width           =   975
  41.    End
  42.    Begin VB.TextBox DirPath 
  43.       Appearance      =   0  'Flat
  44.       Height          =   285
  45.       Left            =   720
  46.       TabIndex        =   0
  47.       Top             =   120
  48.       Width           =   3735
  49.    End
  50.    Begin VB.Label Label1 
  51.       Caption         =   "路径"
  52.       Height          =   255
  53.       Left            =   120
  54.       TabIndex        =   1
  55.       Top             =   120
  56.       Width           =   495
  57.    End
  58. End
  59. Attribute VB_Name = "AddEditDir"
  60. Attribute VB_GlobalNameSpace = False
  61. Attribute VB_Creatable = False
  62. Attribute VB_PredeclaredId = True
  63. Attribute VB_Exposed = False
  64. Option Explicit
  65. Private Sub AddEditCnx_Click()
  66.   UserOpts.Tag = ""
  67.   Unload Me
  68. End Sub
  69. Private Sub AddEditDone_Click()
  70.   UserOpts.Tag = DirPath.Text
  71.   Unload Me
  72. End Sub
  73. Private Sub BrowseDir_Click()
  74.   AddEditDir.Tag = DirPath.Text
  75.   FindFolder.Show 1
  76.   DirPath.Text = AddEditDir.Tag
  77. End Sub