home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Shareware (Platinum Edition) / QUEPLAT95.ISO / files / programm / skeleton / skeleton.rc < prev    next >
Encoding:
Text File  |  1995-09-30  |  1.7 KB  |  72 lines

  1. #define    IDM_EXIT    100
  2. #define    IDM_ABOUT    101
  3.  
  4. #define DS_MODALFRAME    000000080h
  5. #define WS_CAPTION    000C00000h
  6. #define WS_SYSMENU    000080000h
  7. #define IDOK        000000001h
  8. #define WS_GROUP    000020000h
  9.  
  10. Skeleton ICON "skeleton.ico"
  11.  
  12. Skeleton MENU DISCARDABLE
  13. BEGIN
  14.     POPUP "&File"
  15.     BEGIN
  16.         MENUITEM "E&xit",        IDM_EXIT
  17.     END
  18.     POPUP "&Help"
  19.     BEGIN
  20.         MENUITEM "&About Skeleton...",    IDM_ABOUT
  21.     END
  22. END
  23.  
  24. AboutBox DIALOG 100, 100, 160, 72
  25. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  26. FONT 8,"MS Sans Serif"
  27. CAPTION "About Skeleton"
  28. BEGIN
  29.     CTEXT "Skeleton Application"        -1,  0,  8, 160,  8
  30.     CTEXT "Version 1.2"                -1,  0, 16, 160,  8
  31.     CTEXT "32-Bit Assembly Language Programming"-1,  0, 32, 160,  8
  32.     CTEXT "by Wayne J. Radburn"            -1,  0, 40, 160,  8
  33.     DEFPUSHBUTTON "OK"                  IDOK, 55, 52,  50, 14
  34.     ICON  "Skeleton"                -1, 20, 10,   0,  0
  35. END
  36.  
  37. STRINGTABLE
  38. BEGIN
  39.     IDM_EXIT    , "Exit Skeleton"
  40.     IDM_ABOUT    , "Displays program information"
  41. END
  42.  
  43. 1 VERSIONINFO
  44. FILEVERSION    1,2,0,0
  45. PRODUCTVERSION    1,2,0,0
  46. FILEFLAGSMASK    00000003Fh
  47. FILEFLAGS    00000000Bh
  48. FILEOS        000010001h
  49. FILETYPE    000000001h
  50. FILESUBTYPE    000000000h
  51.  
  52. BEGIN
  53.     BLOCK "StringFileInfo"
  54.     BEGIN
  55.         BLOCK "040904E4"
  56.         BEGIN
  57.             VALUE "CompanyName",    " \0"
  58.         VALUE "Comments",        "Written by: Wayne J. Radburn\0"
  59.         VALUE "FileDescription",    "32-Bit Assembly Language Skeleton Application\0"
  60.         VALUE "FileVersion",    "1.20\0"
  61.         VALUE "InternalName",    "Skeleton\0"
  62.         VALUE "OriginalFilename",    "SKELETON.EXE\0"
  63.         VALUE "ProductName",    "Skeleton\0"
  64.         VALUE "ProductVersion",    "1.20\0"
  65.         END
  66.     END
  67.     BLOCK "VarFileInfo"
  68.     BEGIN
  69.         VALUE "Translation", 0x0409, 1252
  70.     END
  71. END
  72.