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

Ftp服务器

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
  3. Begin VB.Form frmFTP 
  4.    Appearance      =   0  'Flat
  5.    AutoRedraw      =   -1  'True
  6.    BackColor       =   &H00C0C0C0&
  7.    BorderStyle     =   1  'Fixed Single
  8.    Caption         =   "FTP服务器"
  9.    ClientHeight    =   4575
  10.    ClientLeft      =   1455
  11.    ClientTop       =   3105
  12.    ClientWidth     =   8355
  13.    BeginProperty Font 
  14.       Name            =   "MS Sans Serif"
  15.       Size            =   8.25
  16.       Charset         =   0
  17.       Weight          =   700
  18.       Underline       =   0   'False
  19.       Italic          =   0   'False
  20.       Strikethrough   =   0   'False
  21.    EndProperty
  22.    ForeColor       =   &H80000008&
  23.    Icon            =   "frmFtp.frx":0000
  24.    LinkTopic       =   "FtpServ"
  25.    MaxButton       =   0   'False
  26.    MinButton       =   0   'False
  27.    PaletteMode     =   1  'UseZOrder
  28.    ScaleHeight     =   4575
  29.    ScaleWidth      =   8355
  30.    StartUpPosition =   2  '屏幕中心
  31.    Begin VB.TextBox UsrCnt 
  32.       Appearance      =   0  'Flat
  33.       Height          =   285
  34.       Left            =   3240
  35.       TabIndex        =   5
  36.       Text            =   "0"
  37.       Top             =   3920
  38.       Width           =   855
  39.    End
  40.    Begin VB.CommandButton EndCmd 
  41.       Caption         =   "关闭连接"
  42.       Height          =   375
  43.       Left            =   120
  44.       TabIndex        =   3
  45.       Top             =   3840
  46.       Width           =   1935
  47.    End
  48.    Begin VB.Frame StatFrame 
  49.       BackColor       =   &H00C0C0C0&
  50.       Caption         =   "状态显示"
  51.       Height          =   3735
  52.       Left            =   120
  53.       TabIndex        =   1
  54.       Top             =   0
  55.       Width           =   8055
  56.       Begin VB.ListBox LogWnd 
  57.          Appearance      =   0  'Flat
  58.          BackColor       =   &H00000000&
  59.          BeginProperty Font 
  60.             Name            =   "MS Serif"
  61.             Size            =   6.75
  62.             Charset         =   0
  63.             Weight          =   400
  64.             Underline       =   0   'False
  65.             Italic          =   0   'False
  66.             Strikethrough   =   0   'False
  67.          EndProperty
  68.          ForeColor       =   &H0000FF00&
  69.          Height          =   3330
  70.          ItemData        =   "frmFtp.frx":030A
  71.          Left            =   120
  72.          List            =   "frmFtp.frx":030C
  73.          TabIndex        =   2
  74.          Top             =   300
  75.          Width           =   7815
  76.       End
  77.    End
  78.    Begin ComctlLib.StatusBar StatusBar 
  79.       Align           =   2  'Align Bottom
  80.       Height          =   255
  81.       Left            =   0
  82.       TabIndex        =   0
  83.       Top             =   4320
  84.       Width           =   8355
  85.       _ExtentX        =   14737
  86.       _ExtentY        =   450
  87.       SimpleText      =   ""
  88.       _Version        =   327682
  89.       BeginProperty Panels {0713E89E-850A-101B-AFC0-4210102A8DA7} 
  90.          NumPanels       =   3
  91.          BeginProperty Panel1 {0713E89F-850A-101B-AFC0-4210102A8DA7} 
  92.             Object.Width           =   10654
  93.             MinWidth        =   10654
  94.             TextSave        =   ""
  95.             Key             =   ""
  96.             Object.Tag             =   ""
  97.          EndProperty
  98.          BeginProperty Panel2 {0713E89F-850A-101B-AFC0-4210102A8DA7} 
  99.             Style           =   6
  100.             Object.Width           =   2187
  101.             MinWidth        =   2187
  102.             TextSave        =   "2008-6-23"
  103.             Key             =   ""
  104.             Object.Tag             =   ""
  105.          EndProperty
  106.          BeginProperty Panel3 {0713E89F-850A-101B-AFC0-4210102A8DA7} 
  107.             Style           =   5
  108.             Object.Width           =   1764
  109.             MinWidth        =   1764
  110.             TextSave        =   "11:18"
  111.             Key             =   ""
  112.             Object.Tag             =   ""
  113.          EndProperty
  114.       EndProperty
  115.    End
  116.    Begin VB.Label Label1 
  117.       BackStyle       =   0  'Transparent
  118.       Caption         =   "用户"
  119.       BeginProperty Font 
  120.          Name            =   "MS Sans Serif"
  121.          Size            =   8.25
  122.          Charset         =   0
  123.          Weight          =   400
  124.          Underline       =   0   'False
  125.          Italic          =   0   'False
  126.          Strikethrough   =   0   'False
  127.       EndProperty
  128.       Height          =   255
  129.       Left            =   2760
  130.       TabIndex        =   4
  131.       Top             =   3960
  132.       Width           =   495
  133.    End
  134.    Begin VB.Menu mSetup 
  135.       Caption         =   "安装"
  136.    End
  137. End
  138. Attribute VB_Name = "frmFTP"
  139. Attribute VB_GlobalNameSpace = False
  140. Attribute VB_Creatable = False
  141. Attribute VB_PredeclaredId = True
  142. Attribute VB_Exposed = False
  143. ' Code for the form frmMTMain.
  144. Public MainApp As MainApp
  145. Private Sub Form_Unload(Cancel As Integer)
  146.   MainApp.Closing
  147.   Set MainApp = Nothing
  148. End Sub
  149. Private Sub EndCmd_Click()
  150.   Dim i As Integer
  151.   For i = 1 To MAX_N_USERS    'close all connection
  152.     If users(i).control_slot <> INVALID_SOCKET Then
  153.       retf = closesocket(users(i).control_slot) 'close control slot
  154.       Set users(i).Jenny = Nothing
  155.     End If
  156.     If users(i).data_slot <> INVALID_SOCKET Then
  157.       retf = closesocket(users(i).data_slot) 'close data slot
  158.     End If
  159.   Next
  160.   retf = closesocket(ServerSlot)
  161.   If SaveProfile(App.Path & "Burro.ini", True) Then
  162.   End If
  163.   Unload Me
  164. End Sub
  165. Private Sub mSetup_Click()
  166.   UserOpts.Show 1
  167. End Sub