home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / notify.pak / NOTIFY.RC < prev   
Text File  |  1997-07-23  |  1KB  |  36 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //----------------------------------------------------------------------------
  4. #ifndef WORKSHOP_INVOKED
  5.   #include <windows.h>
  6. #endif
  7. #include "notify.h"
  8.  
  9. #include <owl\owlapp.rc>         // default owl app icon
  10.  
  11. IDM_COMMANDS MENU
  12. {
  13.   POPUP "&Test"
  14.   {
  15.     MENUITEM "&Notifications", CM_TEST
  16.   }
  17. }
  18.  
  19. IDD_TEST DIALOG 25, 48, 262, 88
  20. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_THICKFRAME
  21. CAPTION "Notification Tester"
  22. FONT 8, "MS Sans Serif"
  23. {
  24.  PUSHBUTTON "&Beep", ID_BUTTON, 23, 42, 48, 14
  25.  CTEXT "0", ID_STATIC, 36, 21, 19, 11
  26.  CONTROL "", -1, "static", SS_BLACKFRAME | WS_CHILD | WS_VISIBLE, 6, 15, 83, 48
  27.  LTEXT "Beep!", -1, 6, 6, 76, 8
  28.  PUSHBUTTON "OK", IDOK, 111, 72, 48, 14
  29.  CONTROL "", -1, "static", SS_BLACKFRAME | WS_CHILD | WS_VISIBLE, 96, 15, 162, 48
  30.  LTEXT "Press the buttons!", -1, 96, 6, 60, 8
  31.  PUSHBUTTON "Button&1", ID_BUTTON1, 99, 30, 36, 14
  32.  PUSHBUTTON "Button&2", ID_BUTTON2, 138, 30, 36, 14
  33.  PUSHBUTTON "Button&3", ID_BUTTON3, 180, 30, 36, 14
  34.  PUSHBUTTON "Button&4", ID_BUTTON4, 219, 30, 36, 14
  35. }
  36.