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.

46 lines
2.1 KiB

  1. // --------------------------------------------------------------------------
  2. // Module Name: dialogs.rc
  3. //
  4. // Copyright (c) 2000, Microsoft Corporation
  5. //
  6. // Resources for the FUS server DLL.
  7. //
  8. // History: 2000-08-31 vtan created
  9. // 2000-11-04 vtan moved from fusapi to fussrv
  10. // 2000-12-29 vtan moved from DS to SHELL depot
  11. // 2001-01-02 vtan split to separate files
  12. // --------------------------------------------------------------------------
  13. IDD_BADAPP_CLOSE DIALOG DISCARDABLE 0, 0, 302, 108
  14. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  15. CAPTION "Warning"
  16. FONT 8, "MS Shell Dlg"
  17. BEGIN
  18. DEFPUSHBUTTON "Cancel",IDOK,155,87,50,14
  19. PUSHBUTTON "Close Program",IDC_BADAPP_CLOSEPROGRAM,96,87,55,14
  20. ICON IDI_WARNING,IDC_STATIC,7,7,21,20
  21. LTEXT "%1 is already running %2. Two users cannot run this program at the same time.\n\nYou can close the program %3 is running so that you can use it. However, if you do this, %4 will lose any unsaved work.\n\nTo close the program %5 is running, click Close Program.",
  22. IDC_BADAPP_CLOSE,34,7,261,76
  23. END
  24. IDD_BADAPP_STOP DIALOG DISCARDABLE 0, 0, 302, 73
  25. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  26. CAPTION "Warning"
  27. FONT 8, "MS Shell Dlg"
  28. BEGIN
  29. DEFPUSHBUTTON "OK",IDOK,125,52,50,14
  30. ICON IDI_ERROR,IDC_STATIC,7,7,21,20
  31. LTEXT "%1!s! is already running %2!s!. Two users cannot run this program at the same time.\n\nIf you need to run this program, ask %3!s! to close it first.",
  32. IDC_BADAPP_STOP,34,7,261,45
  33. END
  34. IDD_PROGRESS DIALOG DISCARDABLE 0, 0, 193, 53
  35. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
  36. CAPTION "Close in progress"
  37. FONT 8, "MS Shell Dlg"
  38. BEGIN
  39. ICON IDI_INFORMATION,IDC_STATIC,7,7,21,20
  40. LTEXT "Closing %1!s! in use by %2!s!.",IDC_PROGRESS_CLOSE,34,7,152,26
  41. CONTROL "Progress",IDC_PROGRESS_PROGRESSBAR,"msctls_progress32",PBS_SMOOTH | WS_BORDER,34,36,152,10
  42. END