Source code of Windows XP (NT5)
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.

71 lines
5.0 KiB

  1. #include "taskman.h"
  2. PWRTASKMANDLG DIALOG LOADONCALL MOVEABLE DISCARDABLE 30, 22, 160, 130
  3. CAPTION "Task List"
  4. FONT 8 "MS Shell Dlg"
  5. STYLE WS_BORDER | DS_MODALFRAME | WS_CAPTION | WS_DLGFRAME | WS_POPUP | WS_SYSMENU
  6. BEGIN
  7. CONTROL "", IDD_TASKLISTBOX, "listbox", LBS_NOTIFY | WS_VSCROLL | WS_BORDER | WS_CHILD | WS_TABSTOP, 3, 3, 154, 70
  8. CONTROL "&New Task:", IDD_CLTEXT, "static", SS_LEFT | WS_GROUP | WS_CHILD, 3, 77, 37, 10
  9. CONTROL "", IDD_PATH, "combobox", CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | WS_CHILD | WS_VSCROLL, 40, 75, 92, 50
  10. CONTROL "&Run", IDD_RUN, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 136, 74, 21, 14
  11. CONTROL "&Switch To", IDD_SWITCH, "button", BS_DEFPUSHBUTTON | WS_TABSTOP | WS_CHILD, 1, 92, 45, 14
  12. CONTROL "&End Task", IDD_TERMINATE, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 52, 92, 45, 14
  13. CONTROL "Cancel", IDCANCEL, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 103, 92, 55, 14
  14. CONTROL "", IDD_TEXT, "static", SS_BLACKRECT | WS_CHILD, 0, 109, 160, 1
  15. CONTROL "&Cascade", IDD_CASCADE, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 1, 113, 45, 14
  16. CONTROL "&Tile", IDD_TILE, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 52, 113, 45, 14
  17. CONTROL "&Arrange Icons", IDD_ARRANGEICONS, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 103, 113, 55, 14
  18. END
  19. WMPTASKMANDLG DIALOG LOADONCALL MOVEABLE DISCARDABLE 30, 22, 160, 112
  20. CAPTION "Task List"
  21. FONT 8 "MS Shell Dlg"
  22. STYLE WS_BORDER | DS_MODALFRAME | WS_CAPTION | WS_DLGFRAME | WS_POPUP | WS_SYSMENU
  23. BEGIN
  24. CONTROL "", IDD_TASKLISTBOX, "listbox", LBS_NOTIFY | WS_VSCROLL | WS_BORDER | WS_CHILD | WS_TABSTOP, 3, 3, 154, 70
  25. CONTROL "&Switch To", 1, "button", BS_DEFPUSHBUTTON | WS_TABSTOP | WS_CHILD, 1, 74, 45, 14
  26. CONTROL "&End Task", IDD_TERMINATE, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 52, 74, 45, 14
  27. CONTROL "Cancel", IDCANCEL, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 103, 74, 55, 14
  28. CONTROL "", IDD_TEXT, "static", SS_BLACKRECT | WS_CHILD, 0, 91, 160, 1
  29. CONTROL "&Cascade", IDD_CASCADE, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 1, 95, 45, 14
  30. CONTROL "&Tile", IDD_TILE, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 52, 95, 45, 14
  31. CONTROL "&Arrange Icons", IDD_ARRANGEICONS, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 103, 95, 55, 14
  32. END
  33. STRINGTABLE
  34. BEGIN
  35. IDS_MSGBOXSTR1, "The application has chosen not to close. It may be completing a lengthy task. "
  36. IDS_MSGBOXSTR2, "Forcing the application to close may lose data. Do you wish to force the application to close?"
  37. IDS_EXECERRTITLE, "Application Execution Error" /* 32 */
  38. IDS_NOMEMORYMSG, "Insufficient memory to run this application; close one or more Windows applications and try again." /* 128 */
  39. IDS_FILENOTFOUNDMSG, "Cannot find file %s (or one of its components); check to ensure the path and filename are correct and that all required libraries are available." /* 128 */
  40. IDS_BADPATHMSG, "The path is invalid." /* 128 */
  41. IDS_MANYOPENFILESMSG, "Too many other files are currently in use."
  42. IDS_ACCESSDENIED, "Access to the specified device, path or file is denied." /* 128 */
  43. IDS_NEWWINDOWSMSG, "This application requires a newer version of Microsoft Windows." /* 128 */
  44. IDS_OS2APPMSG "The specified application is not a Windows or DOS program." /* 128 */
  45. IDS_MULTIPLEDSMSG, "Cannot start more than one copy of the specified program." /* 128 */
  46. IDS_PMODEONLYMSG, "This application requires Standard or Enhanced Mode Windows."
  47. IDS_COMPRESSEDEXE "This program or one of its components is compressed.\n\nPlease uncompress it and try again."
  48. IDS_INVALIDDLL "One of the library files needed to run this application is damaged. Please reinstall this application."
  49. IDS_SHAREERROR "This file is in use by some other application."
  50. IDS_ASSOCINCOMPLETE, "Cannot open file. Start the application used to create this file, and open it from there."
  51. IDS_DDEFAIL, "An error occurred sending the command to the application." /* 128 */
  52. IDS_NOASSOCMSG, "No association exists for the specified file."
  53. IDS_UNKNOWNMSG, "Unexpected DOS error: %d." /* 125!*/
  54. END
  55. #include <ntverp.h>
  56. #define VER_FILETYPE VFT_APP
  57. #define VER_FILESUBTYPE VFT2_UNKNOWN
  58. #define VER_FILEDESCRIPTION_STR "Task Manager"
  59. #define VER_INTERNALNAME_STR "taskman\0"
  60. #define VER_ORIGINALFILENAME_STR "TASKMAN.EXE"
  61. #include "common.ver"
  62.