FLLogMsgs Event fired to provide script log information |
Top Previous Next |
Overview An event fired whenever a line of text added to the FileLink console window. Process this event if you wish to implement something similar to FileLink’s console window in your application. The following are example lines of text delivered via this event:
*Logon in progress... *Logon successful.
C++ Definition void FLLogMsgs( BSTR bstrLogMessage)
VB Definition FLLogMsgs(ByVal LogMessage As String)
Return Value None.
Parameters bstrLogMessage / LogMessage A NULL terminated string containing one line of log 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 FileLink is suspended until control is returned - typically your handler should save the contents of the delivered string as appropriate and return immediately. |