RoboFTPMsgs | Event fired to provide trace information |
<< Click to Display Table of Contents >> Navigation: Robo-FTP User's Guide > Using Robo-FTP > Using COM/OLE to Control Robo-FTP > COM Events >
|
Overview
An event fired whenever a line of text is added to the Robo-FTP trace window. Process this event if you wish to implement something similar to Robo-FTP’s trace window in your application. The following are example lines of text delivered via this event:
Robo-FTP Client Applet v2.0.0
Locating site: "ftp.acme-widget.com"...
Connecting to IP address "209.198.142.116"...
Connected to "209.198.142.116", port 21
220 Acme Widget Company FTP Server [ftp.acme-widget.com]
USER acmeftp
331 Password required for acmeftp.
PASS ********
230 User roboftp logged in.
C++ Definition
void RoboFTPMsgs( BSTR bstrFTPMessage )
VB Definition
RoboFTPMsgs( ByVal FTPMessage As String )
C# Definition
void RoboFTPMsgs( ref String strFTPMessage )
VB.NET Definition
RoboFTPMsgs( ByRef FTPMessage As String )
Return Value
None.
Parameters
bstrFTPMessage / FTPMessage
A NULL terminated string containing one line of trace text.
Remarks
The string arriving with this event will typically be less than 80 characters in length. Your handler for this event should be as brief as possible since Robo-FTP is suspended until control is returned - typically your handler should save the contents of the delivered string as appropriate and return immediately.