FT_MRESET() Reset mouse driver and return status of mouse ──────────────────────────────────────────────────────────────────────────────
Syntax
FT_MRESET() -> nMouseStatus
Arguments
NONE
Returns
An integer representing the mouse status (0 == mouse not installed)
Description
Resets the mouse driver and returns mouse status. Use FT_MSHOWCRS() to display the mouse cursor. The mouse is set to allow it to cover the complete screen (as defined by MAXCOL() and MAXROW()). This is necessary because at least some versions of the mouse drivers do not operate according to the documentation when confronted with a 43 or 50 line screen.
Normally, FT_MINIT() should be used to initialize the mouse since it will not reinitialize if already done.
Examples
IF Empty( FT_MRESET() ) ? "No mouse driver is installed" ENDIF