Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
2.0 KiB

  1. /****************************** Module Header ******************************\
  2. * Module Name: res.rc
  3. *
  4. * Copyright (c) 1985-91, Microsoft Corporation
  5. *
  6. * Constants
  7. *
  8. * History:
  9. * 08-21-91 Created.
  10. \***************************************************************************/
  11. #include <windows.h>
  12. #include "menu.h"
  13. //
  14. // Menus
  15. //
  16. ID_WOMENU MENU PRELOAD
  17. BEGIN
  18. MENUITEM "Mar&k", cmMark
  19. MENUITEM "Cop&y\tEnter", cmCopy
  20. MENUITEM "&Paste", cmPaste
  21. MENUITEM "&Select All", cmSelectAll
  22. MENUITEM "Scro&ll", cmScroll
  23. MENUITEM "&Find...", cmFind
  24. END
  25. //
  26. // Strings
  27. //
  28. STRINGTABLE PRELOAD
  29. BEGIN
  30. /* errors */
  31. /*
  32. * Fullscreen didn't initialize
  33. */
  34. msgNoFullScreen, "The video device failed to initialize for fullscreen mode."
  35. /*
  36. * Command line editing messages
  37. */
  38. msgCmdLineF2, "Enter char to copy up to: "
  39. msgCmdLineF4, "Enter char to delete up to: "
  40. msgCmdLineF9, "Enter command number: "
  41. msgMarkMode, "Mark"
  42. msgSelectMode, "Select"
  43. msgScrollMode, "Scroll"
  44. /* Menu items that replace the standard ones. These don't have the accelerators */
  45. SC_CLOSE, "&Close"
  46. /* just menu items */
  47. cmControl, "&Properties"
  48. cmEdit, "&Edit"
  49. cmDefaults "&Defaults"
  50. END
  51. //
  52. // Dialogs
  53. //
  54. ID_FINDDLG DIALOG LOADONCALL MOVEABLE DISCARDABLE 30, 73, 236, 62
  55. STYLE WS_BORDER | WS_CAPTION | DS_MODALFRAME | WS_POPUP | DS_3DLOOK
  56. CAPTION "Find"
  57. FONT 8, "MS Shell Dlg"
  58. BEGIN
  59. LTEXT "Fi&nd what:", -1, 4, 8, 42, 8
  60. EDITTEXT ID_FINDSTR, 47, 7, 128, 12, WS_GROUP | WS_TABSTOP | ES_AUTOHSCROLL
  61. AUTOCHECKBOX "Match &case", ID_FINDCASE, 4, 42, 64, 12
  62. GROUPBOX "Direction", -1, 107, 26, 68, 28, WS_GROUP
  63. AUTORADIOBUTTON "&Up", ID_FINDUP, 111, 38, 25, 12, WS_GROUP
  64. AUTORADIOBUTTON "&Down", ID_FINDDOWN, 138, 38, 35, 12
  65. DEFPUSHBUTTON "&Find Next", IDOK, 182, 5, 50, 14, WS_GROUP
  66. PUSHBUTTON "Cancel", IDCANCEL, 182, 23, 50, 14
  67. END