Chapter 3 ActiveX IDispatch Interface Reference
Type Library |
JAGAXWrapLib |
Progid |
Jaguar.JagServer |
Contains utility methods for use in Jaguar ActiveX components.
Chapter 8, "Creating ActiveX Components" in the Jaguar CTS Programmer's Guide
Write a message to the server's log file.
IJagServer.WriteLog(useTimeStamp, message)
useTimeStamp
TRUE
if the
current date and time should be prepended to the log message; FALSE
otherwise.
message
A message to be written to the server's log file.
The following Visual Basic fragment declares a function that writes a string to the server's log, prepended with the name of the component:
Private Function writeToJaguarLog(msg As String)
Dim jserver As JAGAXWrapLib.JagServer
Set jserver = New JAGAXWrapLib.JagServer
jserver.WriteLog True, Format("MyComponent: " & msg)
End Function
Chapter 8, "Creating ActiveX Components" in the Jaguar CTS Programmer's Guide
Copyright © 2000 Sybase, Inc. All rights reserved. |
![]() |