home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / progwin / chap14 / justify.rc < prev    next >
Encoding:
Text File  |  1990-11-12  |  893 b   |  33 lines

  1. /*----------------------------
  2.    JUSTIFY.RC resource script
  3.   ----------------------------*/
  4.  
  5. #include "justify.h"
  6.  
  7. Ismael TEXT justify.asc
  8.  
  9. Justify MENU     
  10.      {
  11.      MENUITEM  "&FaceName",        IDM_FACE
  12.      POPUP     "&PointSize"
  13.           {
  14.           MENUITEM "temp",         IDM_SIZE
  15.           }
  16.      POPUP     "&Attributes"
  17.           {
  18.           MENUITEM "&Bold",        IDM_BOLD
  19.           MENUITEM "&Italic",      IDM_ITALIC
  20.           MENUITEM "&StrikeOut",   IDM_STRIKE
  21.           MENUITEM "&Underline",   IDM_UNDER
  22.           MENUITEM SEPARATOR
  23.           MENUITEM "&Normal",      IDM_NORM
  24.           }
  25.      POPUP     "A&lignment"
  26.           {
  27.           MENUITEM "&Left",        IDM_LEFT, CHECKED
  28.           MENUITEM "&Right",       IDM_RIGHT
  29.           MENUITEM "&Centered",    IDM_CENTER
  30.           MENUITEM "&Justified",   IDM_JUST
  31.           }
  32.      }
  33.