home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dialog.zip / DIALOG.RC < prev   
Text File  |  1998-04-20  |  1KB  |  44 lines

  1. /*********** DIALOG C Sample Program Resource Script File (.RC) **************
  2.  *
  3.  *  The window resources used by an application are defined in a resource
  4.  *  script file .RC.  This file is compiled by the resource compiler to
  5.  *  produce an executable-format file.
  6.  *  The definitions are either statements which define resources or
  7.  *  references to other files containing resources.
  8.  *
  9.  *  In this resource script file:
  10.  *  ------------------------------------------------------------------------
  11.  *  Statement:                        References:
  12.  *  ACCELTABLE ID_MAINWND PRELOAD     #include <os2.h>
  13.  *  MENU       ID_MAINWND PRELOAD     #include "dialog.h"
  14.  *  STRINGTABLE PRELOAD               ICON ID_MAINWND PRELOAD dialog.ico
  15.  *                                    rcinclude dialog.dlg
  16.  *
  17.  ******************************************************************************/
  18.  
  19. #include <os2.h>
  20. #include "dialog.h"
  21.  
  22. ICON       ID_MAINWND PRELOAD dialog.ico
  23. BITMAP     ID_BITMAP  PRELOAD prodinfo.bmp
  24.  
  25. ACCELTABLE ID_MAINWND PRELOAD
  26. BEGIN
  27.   VK_F3, ID_EXITPROGRAM, VIRTUALKEY
  28. END
  29.  
  30. MENU       ID_MAINWND PRELOAD
  31. BEGIN
  32.   SUBMENU "~Options",             ID_COMMANDS
  33.   BEGIN
  34.     MENUITEM "~Where...",         ID_WHERE,       MIS_TEXT
  35.   END
  36. END
  37.  
  38. STRINGTABLE PRELOAD
  39. BEGIN
  40.   ID_RESPONSE, "You live in "
  41. END
  42.  
  43. rcinclude dialog.dlg
  44.