Print specific message to WebAccess built-in log windows for diagnostic.
Syntax
viewdll.dll |
void VD_API VdBwSpool(char *msg); |
Bwdllobj |
Public Sub BwSpool(msg As String) |
C# |
Void BwSpool(String msg); |
Parameters
msg
[in] The message that want to show on the diagnostic window.
Return Value
None.
Remarks
This function will print specific message to WebAccess built-on log windows for diagnostic. The log window should be created by executing ‘bwspool.exe’ in the WebAccess installed directory (located at “drive:\WebAccess\Node” and “drive:\WebAccess\Client”) before BwSpool() function been called.
C# Sample Code
private void MessageLog(string msg) { lbLog.Items.Add(msg); ViewDllWrap.BwSpool(msg); } |