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: FUNCTION 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 hWnd As Long hWnd = GetDesktopWindow() DriverTerminalShowState 1, hWnd
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.