Contains the full path name of the log file.
Read-write property
Visual Basic |
---|
Public Property DebugLogFile As String |
A string which represents the name and directory of the debug log file.
This property allows you to control the location of the debug log file.
Valid value: Any valid filename.
Default value: "%TEMP%\BarcodeXpress9.log"
Note: This property will have no effect if you set the Debug property to false.
...
// Set Debug to true for logging to be performed
bcXpress.DebugLogFile = "C:\logFile.txt";
...