I've tried everything and can not replicate your problem. Sorry!
I can ftp to my own pc, my work pc, my website
This is one of the tests I used which simply writes a list of files on remote server:
ftp_address$="whatever"
ftp_user$="whatever"
ftp_password$="whatever"
ftp connect ftp_address$,ftp_user$,ftp_password$
if get ftp failure()=1
print "Error Connecting"
e$=get ftp error$()
print "Error: "+e$
else
ftp find first
f$=get ftp file name$()
print f$
ftp find next
while get ftp file type() > -1
f$=get ftp file name$()
print f$
ftp find next
endwhile
endif
ftp disconnect
wait key
It definately disconects from FTP site because I have access to FTP servers. DB program is not left in taskbar.
Have you upgraded to 5.1 as I know this fixes the problrm of FTP commands maximising and minimizing the window when connecting / disconnecting.
Boo!