home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / rwdlg1.rc < prev    next >
Text File  |  1993-12-01  |  661b  |  28 lines

  1. #include <windows.h>
  2. #include <owl\window.rh>
  3. #include "rwdlg1.h"
  4.  
  5. IDD_LCLICK_DLG DIALOG 63, 76, 191, 65
  6. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  7. CAPTION "Mouse Event"
  8. FONT 8, "MS Sans Serif"
  9. {
  10.  DEFPUSHBUTTON "OK", IDOK, 70, 37, 50, 14
  11.  CTEXT "You clicked the left button!", -1, 18, 13, 154, 10
  12. }
  13.  
  14. IDD_RCLICK_DLG DIALOG 63, 76, 191, 65
  15. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  16. CAPTION "Mouse Event"
  17. FONT 8, "MS Sans Serif"
  18. {
  19.  DEFPUSHBUTTON "OK", IDOK, 70, 37, 50, 14
  20.  CTEXT "You clicked the right button!", -1, 18, 13, 154, 10
  21. }
  22.  
  23. EXITMENU MENU
  24. {
  25.  MENUITEM "&Exit", CM_EXIT
  26. }
  27.  
  28.