home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / ROLLDIAL.PAK / ROLLDLGX.RC < prev    next >
Encoding:
Text File  |  1997-05-06  |  1.3 KB  |  43 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1995, 1995 by Borland International, All Rights Reserved
  4. //
  5. // Filename:    RollDlgX.rc
  6. //
  7. // Date:         8-Jun-95
  8. //
  9. // Description:
  10. //----------------------------------------------------------------------------
  11.  
  12. #include <owl/owlapp.rc>
  13. #include <owl/except.rc>
  14. #include <owl/window.rh>
  15.  
  16. #include "RollDlgX.rh"
  17.  
  18. IDM_MAINMENU MENU
  19. {
  20.  POPUP "&Dialog"
  21.  {
  22.   MENUITEM "&Test1", CM_TEST1DIALOG
  23.  }
  24.  
  25. }
  26.  
  27.  
  28. IDD_TEST1 DIALOG 8, 19, 183, 244
  29. STYLE DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX
  30. CAPTION "Rolling test dialog"
  31. FONT 8, "MS Sans Serif"
  32. {
  33.  LTEXT "Note this dialog box has a system menu box.", -1, 6, 8, 118, 17, WS_GROUP
  34.  LTEXT "It also has minimize and maximize boxes.", -1, 6, 30, 118, 18, WS_GROUP
  35.  LTEXT "The minimize button shrinks the dialog box.", -1, 6, 53, 118, 19, WS_GROUP
  36.  LTEXT "The maximize button expands the dialog box.", -1, 6, 78, 118, 21, WS_GROUP
  37.  LTEXT "These functions are available from the system menu as well.", -1, 6, 103, 118, 19, WS_GROUP
  38.  DEFPUSHBUTTON "OK", IDOK, 128, 7, 50, 14, BS_DEFPUSHBUTTON | WS_TABSTOP
  39.  PUSHBUTTON "Cancel", IDCANCEL, 128, 25, 50, 14, WS_TABSTOP
  40.  PUSHBUTTON "Help", IDHELP, 128, 43, 50, 14, WS_TABSTOP
  41. }
  42.  
  43.