Using IE

W

Wolfgang Kais

Hello "JonWayne".

JonWayne said:
How do I use VB to open an FTP window for the user?

I have not tested this, but a suggest something like the following:

Dim ie as Object
Set ie = createobject("InternetExplorer.Application")
ie.Visible = True
ie.Navigate ftp://yourftpsite
 
Top