M-Brig 0 Posted July 29, 2020 Hello, Does anyone have a link to the full help for the ICS FTPClient component? Thank you your help. Maria Share this post Link to post
FPiette 383 Posted July 30, 2020 There is no such thing as "full help". The documentation is in the source code (Component and samples) and on http://wiki.overbyte.be The wiki can be updated by anyone willing to share his knowledge. Just ask write permission. Share this post Link to post
M-Brig 0 Posted July 30, 2020 Hello Francois, Thank you for your response. The documentation you suggested does not give all the possibilities for the OnRequestDone event. We are building an FTPClient application similar to the IpSwitch application. There is an OnSessionConnected event that we use to activate objects on the form once connected. But there is no OnSessionDisconnected. Does The OnRequestDone handle the disconnect? If so what is the call for the Rqtype. Thanks for all your help. Maria Share this post Link to post
FPiette 383 Posted July 31, 2020 FTP use two connections. One for commands and one for data. FTP OnRequestDone event is triggered for every command once executed. Did you had a look at the source code ? OnRequestDone event has an argument RqTyp of type TFtpRequest which is an enumeration of all 78 FTP commands. When in the IDE, use CTRL+Click to immediately jump to any identifier definition. Share this post Link to post