home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap15 / autocli / autocli.rc < prev    next >
Text File  |  1995-05-03  |  1KB  |  50 lines

  1. /*
  2.  * AUTOCLI.RC
  3.  * Automation Client Chapter 15
  4.  *
  5.  * Resource definitions.
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13.  
  14.  
  15. #include <windows.h>
  16. #include "autocli.h"
  17.  
  18. Icon    ICON    autocli.ico
  19.  
  20. IDR_MENU MENU MOVEABLE DISCARDABLE
  21.     BEGIN
  22.     POPUP "&Beeper Object"
  23.      BEGIN
  24.       MENUITEM "&Get Sound",                 IDM_GETSOUND
  25.  
  26.       POPUP "&Set Sound"
  27.        BEGIN
  28.         MENUITEM "&Default",                 IDM_SETSOUNDDEFAULT
  29.         MENUITEM "&Hand",                    IDM_SETSOUNDHAND
  30.         MENUITEM "&Question",                IDM_SETSOUNDQUESTION
  31.         MENUITEM "&Exclamation",             IDM_SETSOUNDEXCLAMATION
  32.         MENUITEM "&Asterisk",                IDM_SETSOUNDASTERISK
  33.         MENUITEM SEPARATOR
  34.         MENUITEM "&Bogus Value",             IDM_SETSOUNDBOGUS
  35.        END
  36.  
  37.       MENUITEM "&Beep",                      IDM_BEEP
  38.       MENUITEM SEPARATOR
  39.       MENUITEM "&Exit",                      IDM_EXIT
  40.      END
  41.     END
  42.  
  43. //Exception messages
  44. STRINGTABLE
  45.     BEGIN
  46.      IDS_MESSAGEEXCEPTION,                   "Error %u in %s:  %s"
  47.      IDS_MESSAGEEXCEPTIONSCODE,              "Error 0x%lX in %s:  %s"
  48.      IDS_MESSAGEUNKNOWNEXCEPTION,            "An unspecified error occurred in the automation object."
  49.     END
  50.