www.pudn.com > tinyserver.zip > frmOptions.frm


VERSION 5.00 
Begin VB.Form frmOptions  
   Caption         =   "Configure TinyServer" 
   ClientHeight    =   3270 
   ClientLeft      =   60 
   ClientTop       =   345 
   ClientWidth     =   5805 
   LinkTopic       =   "Form1" 
   ScaleHeight     =   3270 
   ScaleWidth      =   5805 
   StartUpPosition =   3  'Windows Default 
   Begin VB.CommandButton CancelButton  
      Cancel          =   -1  'True 
      Caption         =   "Cancel" 
      Height          =   375 
      Left            =   3720 
      TabIndex        =   5 
      Top             =   2640 
      Width           =   1455 
   End 
   Begin VB.CommandButton OKbutton  
      Caption         =   "OK" 
      Height          =   375 
      Left            =   3720 
      TabIndex        =   4 
      Top             =   1920 
      Width           =   1455 
   End 
   Begin VB.TextBox DPage  
      Height          =   285 
      Left            =   240 
      TabIndex        =   1 
      Top             =   480 
      Width           =   2535 
   End 
   Begin VB.DirListBox wwwDir  
      Height          =   1665 
      Left            =   240 
      TabIndex        =   0 
      Top             =   1440 
      Width           =   2535 
   End 
   Begin VB.Label Label2  
      Caption         =   "Wepage Directory :" 
      BeginProperty Font  
         Name            =   "MS Sans Serif" 
         Size            =   8.25 
         Charset         =   0 
         Weight          =   400 
         Underline       =   -1  'True 
         Italic          =   0   'False 
         Strikethrough   =   0   'False 
      EndProperty 
      Height          =   255 
      Left            =   240 
      TabIndex        =   3 
      Top             =   1080 
      Width           =   2535 
   End 
   Begin VB.Label Label1  
      Caption         =   "Default Page :" 
      BeginProperty Font  
         Name            =   "MS Sans Serif" 
         Size            =   8.25 
         Charset         =   0 
         Weight          =   400 
         Underline       =   -1  'True 
         Italic          =   0   'False 
         Strikethrough   =   0   'False 
      EndProperty 
      Height          =   255 
      Left            =   240 
      TabIndex        =   2 
      Top             =   120 
      Width           =   1455 
   End 
End 
Attribute VB_Name = "frmOptions" 
Attribute VB_GlobalNameSpace = False 
Attribute VB_Creatable = False 
Attribute VB_PredeclaredId = True 
Attribute VB_Exposed = False 
Option Explicit 
 
Private Sub CancelButton_Click() 
    Unload Me 
End Sub 
 
Private Sub Form_Load() 
    DPage.Text = DefaultPage 
    wwwDir.Path = wwwRoot 
End Sub