home *** CD-ROM | disk | FTP | other *** search
- * Program: CurTest.prg
- * Author: Gerry Braganza
- * Version: Clipper Summer '87
- * Note(s): Change cursor size so that cursor fills an entire
- * character block.
- *
- * Copyright (c) 1988 Nantucket Corp.
-
- x = 0
- y = 13
-
- * Call cursor function.
- ? "Cursor fills entire block"
- CurSize(x,y)
- INKEY(0)
-
- * Cursor is in the upper character block.
- x = 0
- y = 2
- ? "Cursor is in the upper block"
- CurSize(x,y)
- INKEY(0)
-
- * Return normal cursor size.
- x = 12
- y = 13
- ? "Cursor returns to normal"
- CurSize(x,y)