home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / tcl_447.lzh / TCL / tcl.lzh / tcl / help / displayrequest < prev    next >
Text File  |  1990-05-03  |  473b  |  19 lines

  1.  
  2.  
  3. displayrequest - display a requester from Tcl
  4.  
  5. Usage:
  6.  
  7.     displayrequest message yestext notext
  8.  
  9. When executed, you will get a requester with the message text on the
  10. screen, and yestext and notext as the names of what are usually "Continue"
  11. and "Cancel" gadgets.
  12.  
  13. displayrequest returns the string "1" to report selection of the "yes"
  14. option, and "0" to report selection of the "no" option.
  15.  
  16. example:
  17.  
  18.     set result [displayrequest "Exit without saving changes?" "YES" "NO"]
  19.