View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
David G[_4_] David G[_4_] is offline
external usenet poster
 
Posts: 23
Default FTP a file to UNIX server using Excel Macro

Take a look at:
http://www.dailydoseofexcel.com/arch...9/ftp-via-vba/

They present two solutions, one using VBA combined with the Windows
FTP program (SendViaFtp procedure on that site) and another using the
Windows API (no examples provided, but you can find more info at the
Microsoft MSDN site).
I haven't tried to implement it, but I see no reason why it shouldn't
work as they specified. Using Windows API is always more complicated,
so you probably want to avoid that.

Good luck,
David G