StartTrace

Starts a BlueZone COM trace. This command must be used in conjunction with StopTrace.

Parameters
FileName
Name that you want to use for the trace file. The trace file is written to the BlueZone Scripts folder not the Traces folder. Also, if you prefer, you can specify the full path location for the trace file.
Returns
None.
Remarks
Used for troubleshooting purposes. It is best to place StartScript before you make the connection to the host so that you capture all important events from the beginning.
Example
Set bzhao = CreateObject( "BZWhll.WhllObj" )
bzhao.StartTrace( "trace.txt" )
Retval = bzhao.Connect "A"
If ( Retval ) Then
   bzhao.MsgBox "Error connecting to session A!", 48
   EndSub
End If