| AccessType Property | ||||||||||||||||||||||||||||||
| The type of required network connection. | ||||||||||||||||||||||||||||||
| object.AccessType [ = value ] | ||||||||||||||||||||||||||||||
| Return Value | ||||||||||||||||||||||||||||||
None |
||||||||||||||||||||||||||||||
| Settings | ||||||||||||||||||||||||||||||
The settings for value are: |
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
| Example | ||||||||||||||||||||||||||||||
|
Private Sub Form_Load() '\\ Loads the form and sets the accesstype options in the combo box. Form1.ShowEnd Sub Private Sub Connect_Click() '******Connection Button Function********* '******** '******** '***Check to see if we should be in PASV mode.****** If Form1.Check1 Then '***Get the accesstype from the dropdown box.******* FtpTree1.AccessType = Combo1.ListIndex '***Are we connecting through a proxy server?******* If Not Text3.Text = "" Then '**********Set some properties******************** FtpTree1.CleanupTempFiles = False '**************Connect to the site!*********** FtpTree1.NewSession Site, "", UserID, Password End Sub |