CuteFTP run from Navision -> corrupted record separators.

Yo!

With some help from Jörg Styrk I ran my new c.u. :

CREATE(FTP_Control);
FTP_Control.Host(‘zoo01’);
FTP_Control.Port(21);
FTP_Control.Login(‘King’);
FTP_Control.Password(‘Kong’);
FTP_Control.Connect();
FTP_Control.LocalFolder(’\Monkey01\temp’);
FTP_Control.RemoteFolder(‘projektfiler’);
FTP_Control.TransferType(‘ASCII’);
FTP_Control.Download(‘061025’);
FTP_Control.Disconnect();
FTP_Control.Close();

Seams to work fine but the record separators or “end of line” gets out of order.

Anyone?

/K

I changed TYPE ASCII to TYPE AUTO and that did it!

/K