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

  1. // owlrange.rc
  2. //............................................................................
  3. // includes
  4.  
  5. #if !defined (WORKSHOP_INVOKED)
  6. #include <windows.h>
  7. #endif
  8.  
  9. #include "resource.h"
  10.  
  11. //............................................................................
  12. // Icons
  13.  
  14. IDI_MAIN ICON owlrange.ico
  15.  
  16. //............................................................................
  17. // Menus
  18.  
  19. IDM_MAIN MENU
  20. {
  21.     MENUITEM " |< ", IDM_NAV_FIRST
  22.     MENUITEM " << ", IDM_NAV_PRIORSET
  23.     MENUITEM " <  ", IDM_NAV_PRIOR
  24.     MENUITEM "  > ", IDM_NAV_NEXT
  25.     MENUITEM " >> ", IDM_NAV_NEXTSET
  26.     MENUITEM " >| ", IDM_NAV_LAST
  27.     MENUITEM "&Ranges...", IDM_TEST_SETRANGE_STARTEND
  28. }
  29.  
  30. //............................................................................
  31. // Strings
  32.  
  33. STRINGTABLE
  34. {
  35. #ifdef __FLAT__
  36.     IDS_MAINTITLE,    "OWL Range 32"
  37. #else
  38.     IDS_MAINTITLE,    "OWL Range 16"
  39. #endif
  40. }
  41.  
  42. //............................................................................
  43. IDD_START_AND_END DIALOG 6, 15, 142, 115
  44. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION
  45. CAPTION "Set Start and End of Search Range"
  46. FONT 8, "MS Sans Serif"
  47. {
  48.  RTEXT "&Start Value:", -1, 24, 29, 42, 8
  49.  EDITTEXT IDC_START_VALUE, 72, 24, 44, 12, ES_RIGHT | WS_BORDER | WS_TABSTOP
  50.  RTEXT "&End Value:", -1, 24, 47, 42, 8
  51.  EDITTEXT IDC_END_VALUE, 72, 47, 44, 12
  52.  DEFPUSHBUTTON "&OK", IDOK, 12, 96, 50, 14
  53.  PUSHBUTTON "&Cancel", IDCANCEL, 72, 96, 50, 14
  54. }
  55.  
  56.  
  57.