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.

104 lines
4.3 KiB

  1. STRINGTABLE MOVEABLE DISCARDABLE
  2. BEGIN
  3. // toolbar stuff
  4. IDS_SPACE, "Separator"
  5. IDS_PLUS, " + "
  6. IDS_NONE, "None"
  7. // menuhelp stuff
  8. IDS_SYSMENU , "Contains commands for manipulating windows."
  9. IDS_HEADER , "Drag to the left or right to resize columns."
  10. IDS_HEADERADJ , "Resizes columns using the arrow and tab keys."
  11. IDS_TOOLBARADJ, "Adds, moves, and removes buttons on the toolbar."
  12. MH_SYSMENU+SC_RESTORE , "Restores this window to normal size."
  13. MH_SYSMENU+SC_MOVE , "Moves this window."
  14. MH_SYSMENU+SC_SIZE , "Resizes this window."
  15. MH_SYSMENU+SC_MINIMIZE , "Collapses this window to an icon."
  16. MH_SYSMENU+SC_MAXIMIZE , "Expands this window to fill the screen."
  17. MH_SYSMENU+SC_CLOSE , "Closes this window."
  18. MH_SYSMENU+SC_TASKLIST , "Switches to another task."
  19. MH_SYSMENU+SC_NEXTWINDOW, "Switches to the next MDI window."
  20. // property sheet
  21. IDS_CLOSE "Close"
  22. IDS_OK "OK"
  23. IDS_PROPERTIESFOR "%s Properties"
  24. IDS_PROPERTIES "Properties"
  25. // MonthCal
  26. IDS_TODAY "Today:"
  27. IDS_GOTOTODAY "&Go to today"
  28. IDS_DELIMETERS "/.,-:" // delimeters between date/time fields
  29. IDS_MONTHFMT "MMMM"
  30. IDS_MONTHYEARFMT "MMMM yyyy"
  31. // Header
  32. IDS_ENTERTEXTHERE "Enter text here"
  33. END
  34. ADJUSTDLG DIALOG 10, 20, 357, 125
  35. STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | DS_CONTEXTHELP
  36. CAPTION "Customize Toolbar"
  37. FONT 8, "MS Shell Dlg"
  38. BEGIN
  39. DEFPUSHBUTTON "&Close", IDCANCEL, 308, 6, 44, 14
  40. PUSHBUTTON "R&eset", IDC_RESET, 308, 23, 44, 14
  41. PUSHBUTTON "&Help", IDC_APPHELP, 308, 40, 44, 14
  42. PUSHBUTTON "Move &Up", IDC_MOVEUP, 308, 74, 44, 14
  43. PUSHBUTTON "Move &Down", IDC_MOVEDOWN, 308, 91, 44, 14
  44. LTEXT "A&vailable toolbar buttons:", -1, 4, 5, 84, 10
  45. LISTBOX IDC_BUTTONLIST, 4, 17, 120, 100, LBS_OWNERDRAWFIXED |
  46. LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT |
  47. LBS_DISABLENOSCROLL | WS_VSCROLL | WS_HSCROLL |
  48. WS_TABSTOP
  49. PUSHBUTTON "&Add ->", IDOK, 131, 42, 44, 14
  50. PUSHBUTTON "<- &Remove", IDC_REMOVE, 131, 62, 44, 14
  51. LTEXT "Current &toolbar buttons:", -1, 182, 5, 78, 10
  52. LISTBOX IDC_CURRENT, 182, 17, 120, 100, LBS_OWNERDRAWFIXED |
  53. LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT |
  54. LBS_DISABLENOSCROLL | WS_VSCROLL | WS_HSCROLL |
  55. WS_TABSTOP
  56. END
  57. DLG_PROPSHEET DIALOG DISCARDABLE 20, 20, 220, 140
  58. STYLE DS_MODALFRAME | DS_3DLOOK | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
  59. CAPTION ""
  60. FONT 8, "MS Shell Dlg"
  61. BEGIN
  62. DEFPUSHBUTTON "OK",IDOK,4,122,50,14, WS_TABSTOP | WS_GROUP
  63. PUSHBUTTON "Cancel",IDCANCEL,58,122,50,14
  64. PUSHBUTTON "&Apply",IDD_APPLYNOW,112,122,50,14, WS_DISABLED
  65. // Deliberately do NOT use mnuemonic for Help button (which is usually hidden)
  66. PUSHBUTTON "Help",IDHELP,166,122,50,14, WS_TABSTOP | WS_GROUP
  67. CONTROL "",IDD_PAGELIST,WC_TABCONTROL,WS_GROUP | WS_TABSTOP | TCS_MULTILINE,4,4,212,114
  68. END
  69. DLG_WIZARD DIALOG DISCARDABLE 20, 20, 290, 46
  70. STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
  71. CAPTION ""
  72. FONT 8, "MS Shell Dlg"
  73. BEGIN
  74. CONTROL "",IDD_PAGELIST,WC_TABCONTROL,WS_GROUP | WS_DISABLED,7,7,276,3
  75. CONTROL "",IDD_DIVIDER,"Static", SS_SUNKEN,7,17,276,1
  76. PUSHBUTTON "< &Back",IDD_BACK,12,26,50,14
  77. DEFPUSHBUTTON "&Next >",IDD_NEXT,62,26,50,14
  78. // DO NOT PUT AN ACCELERATOR ON "Finish"
  79. // There exist apps which enumerate all the controls on the wizard
  80. // and do hard-coded string comparisons. Adding an accelerator
  81. // causes these apps to fault when they can't find the button.
  82. // If an app wants an accelerator on Finish, they can use
  83. // PSM_SETFINISHTEXT to add one themselves.
  84. PUSHBUTTON "Finish",IDD_FINISH,119,26,50,14
  85. PUSHBUTTON "Cancel",IDCANCEL,176,26,50,14
  86. // Deliberately do NOT use mnuemonic for Help button (which is usually hidden)
  87. PUSHBUTTON "Help",IDHELP,233,26,50,14, WS_TABSTOP | WS_GROUP
  88. CONTROL "",IDD_TOPDIVIDER,"Static", SS_SUNKEN,0,35,290,1
  89. END