»
 

Go Back   ResellerRatings Store Ratings > ResellerRatings Forums > Tech Support

Reply
 
LinkBack Thread Tools Display Modes
Old 07-20-2003, 07:21 PM   #1 (permalink)
Guest
Guest
 
Posts: n/a

damn ... good thing I found this forrum ive been havin lots of probs lately, hopefully i can help some ppl t00 ... anyway ....

dll this so u can try it yourself its a Vb ftp app im gonna use in my visual basic application ..

http://freevbcode.com/code/FTPClient.zip


ok ... the address im trying to connect to is 68.59.83.170 8888 ... well only 1 problem , theres no port form on the program .... so please help me one of two ways , if its simple , please give me the code in VB6 so that i can add a port form (the zip file with the client has the visual basic prj file) ... the other way is tell me how i can use it to connect to a port:8888 ftp .... ive tried "68.59.83.170:8888" "68.59.83.170 8888" ... HELP

  Reply With Quote
Old 07-20-2003, 07:45 PM   #2 (permalink)
Registered User
 
omalleytrading's Avatar
 
Join Date: Apr 2003
Location: Albany, NY
Posts: 425
omalleytrading is on a distinguished road
Sorry, I can't help you with that.

I can recommend an alternative, however. I use Chilkat FTP for my VB programs. Works like a charm, and you can specify the port.

Good luck!
omalleytrading is offline   Reply With Quote
Old 07-20-2003, 10:25 PM   #3 (permalink)
Guest
Guest
 
Posts: n/a
which

whcih dll link for vb6

http://www.chilkatsoft.com/downloads.asp
  Reply With Quote
Old 07-20-2003, 10:33 PM   #4 (permalink)
Registered User
 
Join Date: Oct 2001
Location: TOO close to Wash DC
Posts: 7,956
vass0922 is on a distinguished road
I believe you want
FREE FTP ActiveX
http://www.chilkatsoft.com/ChilkatFtp.asp

Nice link, bookmarked for future reference if I should need it
__________________
<< Insert exceedingly large and overly verbose message of how 1337 you are here including full specs of every vehicle you've ever driven and PC you've owned >>
vass0922 is offline   Reply With Quote
Old 07-20-2003, 11:12 PM   #5 (permalink)
Guest
Guest
 
Posts: n/a
thanks but

call me an idiot i know but http://www.chilkatsoft.com/ChilkatFtp.exe .... when i install it on the start menu only a bunch of linx ...
  Reply With Quote
Old 07-21-2003, 12:20 AM   #6 (permalink)
Registered User
 
Join Date: Oct 2001
Location: TOO close to Wash DC
Posts: 7,956
vass0922 is on a distinguished road
Look in the chillkat directory.. the DLL you need for the activex control and some sample vb projects are in there as well

C:\Program Files\Chilkat Software Inc\Chilkat FTP
__________________
<< Insert exceedingly large and overly verbose message of how 1337 you are here including full specs of every vehicle you've ever driven and PC you've owned >>
vass0922 is offline   Reply With Quote
Old 07-21-2003, 04:06 AM   #7 (permalink)
Guest
Guest
 
Posts: n/a
ahuh

thanks ... the ftp prj doesnt have a ports form though ..?
  Reply With Quote
Old 07-21-2003, 12:10 PM   #8 (permalink)
Registered User
 
omalleytrading's Avatar
 
Join Date: Apr 2003
Location: Albany, NY
Posts: 425
omalleytrading is on a distinguished road
Try this:

Code:
Dim oFTP as ChilkatFTP
Dim bResult as Boolean
Dim sPath as String
Dim sRemote as String
Dim sLocal as String
        
Set oFTP = New ChilkatFTP

oFTP.HostName = "68.59.83.170"
oFTP.Port = 8888
oFTP.Passive = 1
oFTP.Username = "yourID"
oFTP.Password = "yourPASS"

sPath = "/downloads"
sRemote = "myRemoteFile.txt"
sLocal = "myLocalFile.txt""

bResult = False
       
If oFTP.Connect = 1 Then
  If oFTP.ChangeRemoteDir(sPath) = 1 Then
    If oFTP.GetFile(sRemote, sLocal) = 1 Then
      bResult = True
    End If
  End If

  oFTP.Disconnect
End If

Set oFTP = Nothing
omalleytrading is offline   Reply With Quote
Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Most Active Discussions

Recent Discussions

All times are GMT -6. The time now is 05:01 AM.