FT_SETVCUR()
Set the cursor position on a specified video page
──────────────────────────────────────────────────────────────────────────────

Syntax

FT_SETVCUR( [ <nPage> ], [ <nRow> ], [ <nCol> ] ) -> NIL

Arguments

<nPage> is the video page (defaults to current page, determined
by FT_GETVPG()

<nRow> is the row coordinate (defaults to 0 )

<nCol> is the column coordinate (defaults to 0 )

Returns

NIL

Description

FT_SETVCUR() sets the cursor position on a specific video page.
It uses FT_INT86() to invoke interrupt 10h, function 2.

For more information on graphics programming, cursors, and video
pages, refer to Richard Wilton's _Programmer's Guide to PC and
PS/2 Video Systems_ (Microsoft Press).

Examples


// Set the position to row 5, column 10 on video page 1:

FT_SETVCUR( 1, 5, 10 )

Source: VIDCUR.PRG

Author: Glenn Scott