
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_wrow()
[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
C_WROW()
DESCRIPTION
C_WROW() determines the relative row coordinate for the specified
window and given starting row. This allows the use of Clipper's
SAY and GET commands with ClipOn windows. (Refer to Chapter 3 for
a complete discussion about ClipOn windows.)
NOTES
The numeric reference for the ClipOn window is a pointer to the
window in memory. Be careful not to change the value of this
pointer, or the window will be unaccessible.
SYNTAX
C_WROW(window, st_row)
PARAMETERS
window (N) is the numeric reference variable for the ClipOn window.
st_row (N) is the relative window row where the SAY or GET command
should be displayed.
RETURNS
There is no return value.
EXAMPLES
&& This creates a window 10,10,20,60 and does a Clipper SAY/GET at
&& window coordinates 1,1.
w1 = c_window(10,10,20,60,"W/B")
mname = space(6)
@ c_wrow(w1,1),c_wcol(w1,1) say "Enter Name:" get mname picture "@!"
read
See Also: C_WCOL() C_WGET() C_WSAY() C_XWINDOW() C_WINDOW() C_WSAVE()
Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson