|
|
/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
faxcfg.rc
Abstract:
Resource file for fax configuration applet
Environment:
Windows NT fax configuration applet
Revision History:
02/27/96 -davidx- Created it.
mm/dd/yy -author- description
--*/
#include <windows.h> #include "resource.h"
// // String resources //
STRINGTABLE BEGIN
IDS_FAX_REMOTE_ADMIN "Fax Server Configuration - " 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." IDS_NAME_TOO_LONG "The server name cannot not be longer than 15 characters."
END
// // Dialog resources //
IDD_SELECT_FAXSERVER DIALOG DISCARDABLE 0, 0, 187, 71 STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Select Fax Server" FONT 8, "MS Shell Dlg" BEGIN LTEXT "Please enter the name of the fax server to be remotely administered (e.g., \\\\servername):", IDC_STATIC,7,7,173,16 EDITTEXT IDC_FAXSERVER_NAME,7,27,173,14,ES_AUTOHSCROLL DEFPUSHBUTTON "OK",IDOK,76,50,50,14,WS_DISABLED PUSHBUTTON "Cancel",IDCANCEL,130,50,50,14 END
IDD_CONNECT_FAXSERVER DIALOG DISCARDABLE 0, 0, 213, 23 STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION FONT 8, "MS Shell Dlg" BEGIN LTEXT "Establishing connection with the fax server ...", IDC_STATIC,7,7,199,8 END
// // Icons //
IDI_FAX_REMOTE_ADMIN ICON DISCARDABLE "faxsvr.ico"
// // Version resource //
#include <ntverp.h>
#define VER_FILETYPE VFT_APP #define VER_FILESUBTYPE VFT2_UNKNOWN #define VER_FILEDESCRIPTION_STR "Remote Fax Configuration Program" #define VER_INTERNALNAME_STR "faxcfg.exe" #define VER_ORIGINALFILENAME_STR "faxcfg.exe"
#include "common.ver"
|