home *** CD-ROM | disk | FTP | other *** search
- /*
- Function: GReGet()
- Purpose: Redisplay all active GETs
- Author: Greg Lief
- Dialect: Clipper 5.01
- Copyright (c) 1991 Greg Lief
- */
- function greget
- memvar getlist
- //───── the logic below prevents hidden passwords from inadvertently
- //───── being displayed if you used @..GGET..PASSWORD
- aeval(getlist, { | get | if(get:picture == NIL .or. ;
- left(get:picture, 2) != "@P", ;
- get:display(), ) } )
- return nil
-
- * eof GREGET.PRG
-