home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / xbase / library / clipper / keyboard / hotget / hotmenu.doc < prev    next >
Text File  |  1992-01-25  |  2KB  |  39 lines

  1. HOTMENU.PRG
  2. Author: Glenn Alcott
  3.         86-22 60th Road
  4.         Elmhurst, NY 11373
  5.         CompuServe: 76044,747
  6.  
  7. HOTMENU.PRG is an enhancement for PROMPT and MENU which allows hot keys to be
  8. displayed in a different color from the rest of the prompt, and to be something
  9. other than the first letter of the prompt.  It redefines PROMPT and MENU TO
  10. through user-defined commands, so that the syntax of your program doesn't have
  11. to change except to add the HOTKEY option to any prompt where the hot key is
  12. not the first letter.  This option is a number indicating the position in
  13. the prompt string of the hot key letter, i.e. :
  14.  
  15.    @ 1,1 PROMPT "Edit File" HOTKEY 6
  16.  
  17. This would make "F" the hot key, as it is the 6th character in the prompt.
  18.  
  19. The color for the hotkeys is not defined in the prompt, but is set to be the
  20. last (5th) setting of the current SETCOLOR() string - the same color used for
  21. unselected GETs.  You're therefore limited to the same hot key color for all
  22. the choices in a menu, but I've never really wanted to do them in different
  23. colors!  It would be easy enough to change the program to accomodate individual
  24. colors for the hot keys, and for the prompts themselves, but this should only
  25. be done if your users love loud and garish screens.
  26.  
  27. To give credit where it's due, I got the idea for this program from the
  28. Nantucket Forum User Library, which contains replacements for PROMPT/MENU TO
  29. called FT_PROMPT and FT_MENUTO, written by Ted Means.  These are more powerful
  30. and do support such things as individual colors for each prompt and hot key.
  31. However, although they are written in a combination of Clipper and assembler,
  32. they were too slow to be useful!  There was a noticeable delay in the display
  33. of every menu even on a very fast PC.  Apparently the Clipper portion of the
  34. code has to do a tremendous amount of work to convert Clipper color codes into
  35. numbers to be passed to the assembler routine, and this took too much time.
  36.  
  37. Feel free to use and change this program in any way you like, and to send a
  38. small ($10 or so) contribution to the author if you find it useful.
  39.