Enable or disable log file function. If this property is True, then ActiveX control writes to log file specified by LogFile Property. If this property is False, ActiveX control doesn’t write to log file. However, this log file contains very primitive SECS-I protocol only. If you need to write message body as well, please use SwingSecsII Control. This property is a persistent property.
Syntax
Return Value
Example
|
.Log = True ' Write to log file
.Log = False ' Do not write to log file
|
|
m_secs.SetLog(true); // Write to log file
m_secs.SetLog(false); // Do not write to log file
|
Remarks
See Also
|