home *** CD-ROM | disk | FTP | other *** search
/ Windows Shareware GOLD / NuclearComputingVol3No1.cdr / _bbs3 / f1530.zip / CLRTEST.RC < prev    next >
Text File  |  1991-08-25  |  1KB  |  54 lines

  1. /*
  2. Resource script for color selector custom control test program
  3.  
  4. (C) Scott Gourley/Clickon Software, 1991.
  5.  
  6. */
  7.  
  8. #include <windows.h>
  9.  
  10. /* standard windows programming environment */
  11.  
  12. #include "winstd.h"
  13.  
  14. /* color selector test header */
  15.  
  16. #include "clrtest.h"
  17.  
  18. /* application icon for color selector test */
  19.  
  20. ClrTest ICON clrtest.ico
  21.  
  22. /* applicaton menu for color selector test */
  23.  
  24. ClrTest MENU
  25. {
  26.     POPUP "&File"
  27.     {
  28.         MENUITEM "E&xit",                       IDM_EXIT
  29.     }
  30.     POPUP "&Options"
  31.     {
  32.         MENUITEM "&Test Color Selector...",     IDM_CLRTEST
  33.     }
  34.     POPUP   "\a&Help"
  35.     {
  36.         MENUITEM    "&Index\tF1",               IDM_INDEXHELP
  37.         MENUITEM    "&Commands",                IDM_COMMANDHELP
  38.         MENUITEM    "&Using Help",              IDM_USINGHELP
  39.         MENUITEM    SEPARATOR
  40.         MENUITEM    "&About Color Test...",     IDM_ABOUT
  41.     }
  42. }
  43.  
  44. Accelerators ACCELERATORS
  45. {
  46.     VK_F1,  IDM_INDEXHELP,  VIRTKEY
  47. }
  48.  
  49. /* color selection test dialog */
  50.  
  51. #include "clrtest.dlg"
  52.  
  53. #include "register.dlg"
  54.