All functions assume you followed directions in the "How To Add To Your Project"
The DriverTerminalShowState function is used to show or hide the debug terminal (see below). Syntax: DriverTerminalShowState(ByVal StateToShow As Long, Optional ByVal ParentHwnd As Long) As Long Parameters: StateToShow = 0 to hide, 1 to show ParentHwnd = Parent Hwnd if to be shown inside a control, or 0 for desktop Returns: 0 if failed 1 if success Example: Dim DriverState As Long DriverState = VXM.DriverTerminalShowState(1, 0)
The "Debug Terminal" is a terminal built into the driver for direct communication to the serial port. This terminal is generally used for troubleshooting or debugging your code, as it shows what is really being sent to the VXM and the responses the VXM sends back.