[twsocket] MAGXFER43 - Error installing on XE8 - E2202 Required package 'IcsVclDXE4Run' not found

2016-03-11 Thread MMG Admin
Heloo, I'm trying to install MAGXFER43 on delphi XE8. I've already installed the latest ICS package. When I try to run the MagentaXferXe8run project i get "[dcc32 Fatal Error] MagentaXferXE8Run.dpk(38): E2202 Required package 'IcsVclDXE4Run' not found". If I change the uses to IcsVCLDXE8Run i get e

Re: [twsocket] ICSFTP delete file after transfer completed.

2016-01-28 Thread MMG Admin
Thank you for pointing me into the right direction! 2016-01-28 14:09 GMT+02:00 Angus Robertson - Magenta Systems Ltd < an...@magsys.co.uk>: > > I want to delete a file after succesfully uploading to ftp. > > I use overbyteicsftp client and the following code: > > Is this the correct approach to d

[twsocket] ICSFTP cannot delete file after successful put. My app is locking the files

2016-01-28 Thread MMG Admin
Hello after successfully uploading the files to a ftp server I'm unable to delete them. I get error 5, acces denied, What can I do? Should I use a delay before trying to delete the file? Thank you! This is the code that I use: procedure incarcare_fisier_pe_ftp_prin_icsftp(nume_fisier,host_ftp,po

[twsocket] ICSFTP delete file after transfer completed.

2016-01-28 Thread MMG Admin
Hello, I want to delete a file after succesfully uploading to ftp. I use overbyteicsftp client and the following code: Is this the correct approach to delete the file after complete transfer to ftp? Thank you begin icsFtp := TFtpclient.Create(nil); try icsFtp.OnProgress64 := form1.icsFtpONP

Re: [twsocket] ICS FTP - function to check if file exists on the ftp server

2016-01-17 Thread MMG Admin
Thank you! This email has been sent from a virus-free computer protected by Avast. www.avast.com

[twsocket] ICS FTP - function to check if file exists on the ftp server

2016-01-17 Thread MMG Admin
Hello, How can I check if a file exists on a ftp server? I need to check if a file exists on server because I don't want to overwrite it. Thank you! Using indy ftp I managed to do this using the following function. How can I modify this to the ics ftp coding style? Function exista_fisier_pe_ftp_

Re: [twsocket] ICS FTP RECURSIVE FOLDER UPLOAD EXEMPLE

2015-12-30 Thread MMG Admin
Thank you. I'll look into the exemples. 2015-12-30 13:40 GMT+02:00 Angus Robertson - Magenta Systems Ltd < an...@magsys.co.uk>: > > I'm trying to use ics ftp to upload a folder that contains multiple > > subfolders and files to a ftp server. > > Can someone please post an exemple of how to iterat

[twsocket] ICS FTP RECURSIVE FOLDER UPLOAD EXEMPLE

2015-12-30 Thread MMG Admin
Hello, I'm trying to use ics ftp to upload a folder that contains multiple subfolders and files to a ftp server. Can someone please post an exemple of how to iterate all subfolders and files and upload to ftp using ics ftp? Thank you! -- To unsubscribe or change your settings for TWSocket mailing

Re: [twsocket] ICS FTP - OnProgress strange behavior

2015-06-07 Thread MMG Admin
Thank you very much for helping me! Best regards! 2015-06-07 21:08 GMT+03:00 Angus Robertson - Magenta Systems Ltd < an...@magsys.co.uk>: > > Everything worked fine in my app till 31 May 2015. > > FLastProgress : Int64; > > if FLastProgress < GetTickCount then begin > > Do I have to clea

Re: [twsocket] ICS FTP - OnProgress strange behavior

2015-06-07 Thread MMG Admin
Thank you for the reply! I'm using the following code: private { declaratii private pentru ICSFTP} FLastProgress : Int64; FProgressCount : TFtpBigInt; procedure Tform2.ICSFtpONProgress(Sender : TObject; Count : int64; var Abort : Boolean); begin // calculate size transmitted/remaining

[twsocket] ICS FTP - OnProgress strange behavior

2015-06-07 Thread MMG Admin
Hello, I'm using ICS FTP client in an application to upload large files to a ftp server. In order to know hoe much data from the file has been transferred I use the onprogress property. Everything worked fine in my app till 31 May 2015. Starting from 1 June 2015 i got no reply from the progress. Th

Re: [twsocket] Overbyte ICS FTP upload with progress bar

2015-03-06 Thread MMG Admin
Thank you for the guidelines! 2015-02-22 16:32 GMT+02:00 Lester Clayton : > I've writen an FTP client that previously used OnFtpProgress, and can > confirm that it's called a tremendous amount of times, and in my case > caused my client application to hit 100% CPU as a result. The way I've > imp

[twsocket] Overbyte ICS FTP upload with progress bar

2015-02-21 Thread MMG Admin
I'm using the ICS Overbyte FTP for uploading a file. I want to display a progressbar and a speed indicator in order to track and estimate large file uploads. How can I do that? Also after the upload is completed i want to delete the file from my hdd. Here is the code that i'm using right now to upl