Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipOn 3.0 Reference - c_wcol() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_WCOL()

 DESCRIPTION

 C_WCOL() determines the relative column coordinate for the
 specified window and given starting column.  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_WCOL(window, st_col)

 PARAMETERS

 window (N) is the numeric reference variable for the ClipOn window.

 st_col (N) is the relative window column 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_WROW() C_WINDOW() C_WSAVE() C_WSAY() C_WGET()

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