home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
msj
/
v10n10
/
vb40.exe
/
WCIMR.EXE
/
WCIMOPTS.FRM
< prev
next >
Wrap
Text File
|
1995-10-01
|
2KB
|
81 lines
VERSION 4.00
Begin VB.Form FrmOptions
BorderStyle = 3 'Fixed Dialog
Caption = "Options"
ClientHeight = 4140
ClientLeft = 3345
ClientTop = 2145
ClientWidth = 3885
Height = 4545
Left = 3285
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4140
ScaleWidth = 3885
ShowInTaskbar = 0 'False
Top = 1800
Width = 4005
Begin VB.CommandButton btnCancel
Caption = "Cancel"
Height = 375
Left = 2760
TabIndex = 5
Top = 1080
Width = 975
End
Begin VB.CommandButton btnOK
Caption = "OK"
Height = 375
Left = 2760
MousePointer = 1 'Arrow
TabIndex = 4
Top = 600
Width = 975
End
Begin VB.TextBox EdtDir
Height = 285
Left = 120
TabIndex = 3
Top = 600
Width = 2415
End
Begin VB.DriveListBox drvDrive
Height = 315
Left = 120
TabIndex = 1
Top = 3600
Width = 2415
End
Begin VB.DirListBox dlbDir
Height = 2505
Left = 120
TabIndex = 0
Top = 960
Width = 2415
End
Begin VB.Label Label1
Caption = "CompuServe base directory:"
Height = 255
Left = 120
TabIndex = 2
Top = 240
Width = 2295
End
End
Attribute VB_Name = "FrmOptions"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Private Sub btnOK_Click()
SetWCIMPathReg (EdtDir.TEXT)
Unload FrmOptions
End Sub
Private Sub dlbDir_Change()
EdtDir.TEXT = dlbDir.Path
End Sub
Private Sub drvDrive_Change()
dlbDir.Path = drvDrive.Drive
End Sub