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.

86 lines
1.9 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. faxcfg.rc
  5. Abstract:
  6. Resource file for fax configuration applet
  7. Environment:
  8. Windows NT fax configuration applet
  9. Revision History:
  10. 02/27/96 -davidx-
  11. Created it.
  12. mm/dd/yy -author-
  13. description
  14. --*/
  15. #include <windows.h>
  16. #include "resource.h"
  17. //
  18. // String resources
  19. //
  20. STRINGTABLE
  21. BEGIN
  22. IDS_FAX_REMOTE_ADMIN "Fax Server Configuration - "
  23. IDS_REMOTE_ADMIN_FAILED "Please make sure the server name you entered is correct, NT Fax is installed and started on the server, and you have administrator privilege."
  24. IDS_NAME_TOO_LONG "The server name cannot not be longer than 15 characters."
  25. END
  26. //
  27. // Dialog resources
  28. //
  29. IDD_SELECT_FAXSERVER DIALOG DISCARDABLE 0, 0, 187, 71
  30. STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
  31. CAPTION "Select Fax Server"
  32. FONT 8, "MS Shell Dlg"
  33. BEGIN
  34. LTEXT "Please enter the name of the fax server to be remotely administered (e.g., \\\\servername):",
  35. IDC_STATIC,7,7,173,16
  36. EDITTEXT IDC_FAXSERVER_NAME,7,27,173,14,ES_AUTOHSCROLL
  37. DEFPUSHBUTTON "OK",IDOK,76,50,50,14,WS_DISABLED
  38. PUSHBUTTON "Cancel",IDCANCEL,130,50,50,14
  39. END
  40. IDD_CONNECT_FAXSERVER DIALOG DISCARDABLE 0, 0, 213, 23
  41. STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION
  42. FONT 8, "MS Shell Dlg"
  43. BEGIN
  44. LTEXT "Establishing connection with the fax server ...",
  45. IDC_STATIC,7,7,199,8
  46. END
  47. //
  48. // Icons
  49. //
  50. IDI_FAX_REMOTE_ADMIN ICON DISCARDABLE "faxsvr.ico"
  51. //
  52. // Version resource
  53. //
  54. #include <ntverp.h>
  55. #define VER_FILETYPE VFT_APP
  56. #define VER_FILESUBTYPE VFT2_UNKNOWN
  57. #define VER_FILEDESCRIPTION_STR "Remote Fax Configuration Program"
  58. #define VER_INTERNALNAME_STR "faxcfg.exe"
  59. #define VER_ORIGINALFILENAME_STR "faxcfg.exe"
  60. #include "common.ver"