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.

91 lines
4.0 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. #include "sdjetevent.rc"
  17. /////////////////////////////////////////////////////////////////////////////
  18. //
  19. // ICON
  20. //
  21. IDI_SMALLWARN ICON DISCARDABLE "warning.ico"
  22. /////////////////////////////////////////////////////////////////////////////
  23. //
  24. // Dialog
  25. //
  26. IDD_DIALOG_SDS DIALOGEX DISCARDABLE 0, 0, 380, 250
  27. STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
  28. CAPTION "Session Directory Settings"
  29. FONT 8, "MS Shell Dlg"
  30. BEGIN
  31. CONTROL "&Join session directory",IDC_CHECK_ENABLE,"Button",
  32. BS_AUTOCHECKBOX | WS_TABSTOP,10,15,121,10,0,
  33. IDH_SESSIONDIRECTORY_YES
  34. LTEXT "&Cluster name:",IDC_STATIC_CLUSTERNAME,24,35,60,8
  35. EDITTEXT IDC_EDIT_CLUSTERNAME,24,48,175,14,ES_AUTOHSCROLL,0,
  36. IDH_SESSIONDIRECTORY_SERVER
  37. LTEXT "&Session directory server name:",IDC_STATIC_STORENAME,
  38. 24,70,166,8
  39. EDITTEXT IDC_EDIT_SERVERNAME,24,83,175,14,ES_AUTOHSCROLL,0,
  40. IDH_SESSIONDIRECTORY_CLUSTERNAME
  41. ICON "",IDC_WARNING_ICON,23,108,20,20
  42. LTEXT "You must ensure the Terminal Services Session Directory Service is running on the specified session directory server.",
  43. IDC_STATIC,42,106,340,35
  44. LTEXT "&Network adapter and IP address session directory should redirect users to:",
  45. IDC_STATIC_IPCOMBO,24,151,340,17
  46. COMBOBOX IDC_IPCOMBO,24,171,340,79,CBS_DROPDOWNLIST |
  47. WS_VSCROLL | WS_TABSTOP
  48. CONTROL "&IP address redirection (uncheck for routing token redirection)",
  49. IDC_CHECK_EXPOSEIP,"Button",BS_AUTOCHECKBOX | BS_TOP |
  50. BS_MULTILINE | WS_TABSTOP,24,199,340,20,0,
  51. IDH_SESSIONDIRECTORY_EXPOSEIP
  52. DEFPUSHBUTTON "OK",IDOK,240,224,50,14
  53. PUSHBUTTON "Cancel",IDCANCEL,295,224,50,14
  54. END
  55. /////////////////////////////////////////////////////////////////////////////
  56. //
  57. // String Table
  58. //
  59. STRINGTABLE DISCARDABLE
  60. BEGIN
  61. IDS_DISABLE "Disable"
  62. IDS_ENABLE "Enable"
  63. IDS_ATTRIBUTE_NAME "Session Directory"
  64. IDS_PROPERTIES "Properties"
  65. IDS_HELPFILE "tscc.hlp"
  66. IDS_DEFAULT "Default"
  67. END
  68. STRINGTABLE DISCARDABLE
  69. BEGIN
  70. IDS_DESCRIP_ENABLE "Enables or disables Session Directory Service"
  71. IDS_DESCRIP_PROPS "Displays property settings for Session Directory Service"
  72. IDS_ERROR_TITLE "Session Directory Service"
  73. IDS_ERROR_TEXT "Unable to load properties: %s"
  74. IDS_ERROR_TEXT2 "Unable to save properties: %s"
  75. IDS_ERROR_TEXT3 "Operation failed: %s"
  76. IDS_ERROR_SDIRLOC "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."
  77. IDS_ERROR_SDIREMPTY "The session directory cannot function with a blank server name. Please either disable session directory, or enter a valid session directory server name."
  78. IDS_ERROR_SDVERIFY "The server you specified is not accepting this computer's request to join the session directory. Verify that the Terminal Services Session Directory service is running on that server and that your computer is a member of the Session Directory Computers security group. Do you want to use the current settings anyway?"
  79. END