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_wget() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 C_WGET()

 DESCRIPTION

 C_WGET() performs a Clipper GET/READ for the specified window and
 given starting row and column.  Additionally, a PICTURE clause and
 VALID expression can be supplied to the function.  An optional
 character string can be displayed to the left of the GET as the SAY
 text.  (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_WGET(window, st_row, st_col, getvar [,picture] [,valid] [,say_text])

 PARAMETERS

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

 st_row (N), st_col (N) is the relative window row and column where
 the GET should be displayed.

 getvar (C) is the variable to use for the GET.  The variable must
 be initialized to the correct length and value, if any.  The getvar
 argument is the same type of GET variable used with a GET/READ.

 picture (C) is the optional PICTURE clause to use with getvar.  The
 picture argument can be any Clipper PICTURE expression.

 valid (C) is the optional VALID expression to use with getvar.  The
 valid argument can be any Clipper VALID expression or function.

 say_text (C) is the optional text to display to the left of the
 getvar input area.

 RETURNS

 There is no return value.

 EXAMPLES

 && This creates a window 10,10,20,60 and does a C_WGET() at window
 && coordinates 1,1 and 2,1.
 w1 = c_window(10,10,20,60,"w/b",2,"w+/r","CLIENT INFORMATION")
 name = space(15)
 notes = space(40)
 c_wget(w1,1,1,"name","@!","","Enter Name:")
 c_wget(w1,2,1,"notes")
 read


See Also: C_WCOL() C_WROW() C_WINDOW() C_XWINDOW() C_WSAVE() C_WSAY()

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