Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- dBsee 4.6 - The Library - <b>dfsetpos()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
dfSetPos()
Move the cursor over the video
------------------------------------------------------------------------------
Syntax:

     dfSetPos( <nRow>, <nCol> ) --> NIL

Parameters:

     <nRow>     Cursor Row
     <nCol>     Cursor Column

Returns:

     NIL

Description:

     Move the cursor over the video This function is usefull if you want to
     write code Clipper 5.2 that works with Clipper 5.3 because in Clipper
     5.3 there is new PCODE for these functions :
     
     COL(), ROW(), SETPOS()

Example:

     SETPOS( 10, 10 )
     ? dfRow() // 10
     ? dfCol() // 10
     
     dfSetPos( 11, 11 )
     ? dfRow() // 11
     ? dfCol() // 11

See also:

     dfCol(), dfRow()

See Also: dfCol() dfRow()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson