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.

83 lines
3.2 KiB

  1. // tssdjet.rc
  2. //
  3. // Version resource for tssdjet.dll.
  4. //
  5. // Copyright (C) 2000 Microsoft Corp.
  6. #include "resource.h"
  7. #include "resource.hm"
  8. #include "windows.h"
  9. #include "ntverp.h"
  10. #define VER_FILETYPE VFT_DLL
  11. #define VER_FILESUBTYPE 0
  12. #define VER_FILEDESCRIPTION_STR "Terminal Server Load Balancing Jet RPC interface"
  13. #define VER_INTERNALNAME_STR "tssdjet.dll"
  14. #define VER_ORIGINALFILENAME_STR "tssdjet.dll"
  15. #include "common.ver"
  16. /////////////////////////////////////////////////////////////////////////////
  17. //
  18. // ICON
  19. //
  20. IDI_SMALLWARN ICON DISCARDABLE "warning.ico"
  21. /////////////////////////////////////////////////////////////////////////////
  22. //
  23. // Dialog
  24. //
  25. IDD_DIALOG_SDS DIALOGEX DISCARDABLE 0, 0, 232, 196
  26. STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
  27. CAPTION "Session Directory Settings"
  28. FONT 8, "MS Shell Dlg"
  29. BEGIN
  30. CONTROL "&Join session directory",IDC_CHECK_ENABLE,"Button",
  31. BS_AUTOCHECKBOX | WS_TABSTOP,10,15,121,10,0,
  32. IDH_SESSIONDIRECTORY_YES
  33. LTEXT "&Cluster name:",IDC_STATIC_CLUSTERNAME,24,35,60,8
  34. EDITTEXT IDC_EDIT_CLUSTERNAME,24,48,175,14,ES_AUTOHSCROLL,0,
  35. IDH_SESSIONDIRECTORY_SERVER
  36. LTEXT "&Session directory server name:",IDC_STATIC_STORENAME,
  37. 24,70,166,8
  38. EDITTEXT IDC_EDIT_SERVERNAME,24,83,175,14,ES_AUTOHSCROLL,0,
  39. IDH_SESSIONDIRECTORY_CLUSTERNAME
  40. ICON "",IDC_WARNING_ICON,23,108,20,20
  41. LTEXT "You must ensure the Terminal Services Session Directory Service is running on the specified session directory server.",
  42. IDC_STATIC,42,106,151,35
  43. CONTROL "Clients can see &IP addresses of Terminal Servers",
  44. IDC_CHECK_EXPOSEIP,"Button",BS_AUTOCHECKBOX | BS_TOP |
  45. BS_MULTILINE | WS_TABSTOP,10,145,215,20,0,
  46. IDH_SESSIONDIRECTORY_EXPOSEIP
  47. DEFPUSHBUTTON "OK",IDOK,95,170,50,14
  48. PUSHBUTTON "Cancel",IDCANCEL,150,170,50,14
  49. END
  50. /////////////////////////////////////////////////////////////////////////////
  51. //
  52. // String Table
  53. //
  54. STRINGTABLE DISCARDABLE
  55. BEGIN
  56. IDS_DISABLE "Disable"
  57. IDS_ENABLE "Enable"
  58. IDS_ATTRIBUTE_NAME "Session Directory"
  59. IDS_PROPERTIES "Properties"
  60. IDS_HELPFILE "tscc.hlp"
  61. END
  62. STRINGTABLE DISCARDABLE
  63. BEGIN
  64. IDS_DESCRIP_ENABLE "Enables or disables Session Directory Service"
  65. IDS_DESCRIP_PROPS "Displays property settings for Session Directory Service"
  66. IDS_ERROR_TITLE "Session Directory Service"
  67. IDS_ERROR_TEXT "Unable to load properties: %s"
  68. IDS_ERROR_TEXT2 "Unable to save properties: %s"
  69. IDS_ERROR_TEXT3 "Operation failed: %s"
  70. IDS_ERROR_SDIRLOC "Sorry, the server name you provided could not be validated. Do you wish to use it anyway? If there is not a valid server name, the session directory cannot function."
  71. IDS_ERROR_SDIREMPTY "Sorry, the session directory cannot function with a blank server name. Please either disable session directory, or enter a valid session directory server name."
  72. END