home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / bug.rc < prev    next >
Text File  |  1994-05-26  |  503b  |  19 lines

  1. #include <windows.h>
  2. #include <owl\window.rh>
  3.  
  4. TheDialog DIALOG 6, 15, 207, 111
  5. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  6. CAPTION "Dialog of the Century"
  7. FONT 8, "MS Sans Serif"
  8. BEGIN
  9.    LISTBOX 101, 27, 8, 49, 88, LBS_STANDARD | WS_TABSTOP
  10.    DEFPUSHBUTTON "OK", IDOK, 148, 6, 50, 14
  11.    PUSHBUTTON "Cancel", IDCANCEL, 148, 24, 50, 14
  12. END
  13.  
  14. MainMenu MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  15. BEGIN
  16.    MENUITEM "E&xit", CM_EXIT
  17.    MENUITEM "&Dialog", 100
  18. END
  19.