|
|
#include <windows.h> #include "resource.h" #include <hlpres.h> #include <faxname.h>
IDI_FAX_EXT ICON DISCARDABLE "fax.ico"
STRINGTABLE BEGIN IDS_CANT_ACCESS_PRINTER "The " FAX_FULL_NAME " Printer cannot be accessed." IDS_RESOURCES_UNAVAIL "There are not enough resources available to send the fax message." IDS_CANT_PRINT "The print action to the " FAX_FULL_NAME " Printer cannot be completed." IDS_CANT_ACCESS_MSG_DATA "The exchange message data cannot be accessed." IDS_CANT_ACCESS_PROFILE "Profile information cannot be accessed." IDS_BAD_ATTACHMENTS "Not all attachments can be rendered." IDS_CANT_PRINT_BODY "The message body cannot be printed." IDS_NO_SUBMIT_RITHTS "You do not have the required security permission to submit faxes. Contact the administrator." IDS_FONT_REGULAR "Regular" IDS_FONT_ITALIC "Italic" IDS_FONT_BOLD "Bold " IDS_FAX_MESSAGE FAX_FULL_NAME " Exchange Transport" IDS_MESSAGE_DOC_NAME "Outlook Fax Message" IDS_FAILED_MESSAGE "The " FAX_FULL_NAME " transport failed to deliver the message to the recipient." IDS_OUT_OF_MEM FAX_FULL_NAME " is out of memory" IDS_INTERNAL_ERROR "The " FAX_FULL_NAME " encountered an internal error, and failed to send the fax." IDS_SUBJECT_FORMAT "Subject: %s\r\n\r\n" IDS_PERSONAL_CP_FORBIDDEN "The use of personal cover pages has not been enabled by the fax administrator. Your fax was not sent." IDS_BAD_CANNONICAL_ADDRESS "The number you have specified is not in a canonical format. Your fax was not sent." IDS_NO_MSG_ATTACHMENTS "There is no attachment" IDS_NO_MSG_BODY "There is no message body in the fax" IDS_EMPTY_MESSAGE "The message does not contain any content" IDS_RECIPIENTS_LIMIT "Your fax was not sent, because the limit on the number of recipients for a single fax broadcast was reached. This limit is set by the fax administrator. Number of recipients: %ld. Recipients limit: %ld." END
IDD_FAX_PROP_CONFIG DIALOGEX 0, 0, 252, 270 STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_CONTEXTHELP CAPTION "Fax Mail Transport" FONT 8, "MS Shell Dlg" BEGIN ICON IDI_FAX_EXT,IDC_STATIC_ICON,10,6,20,20 LTEXT "Fax Configuration",IDC_STATIC_TITLE,38,8,62,16 LTEXT "Fax &Printers:",IDC_STATIC_PRINTERS,10,40,128,8,0,0, HIDC_MAPI_PRINTER_LIST COMBOBOX IDC_PRINTER_LIST,10,53,232,64,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP,0,HIDC_MAPI_PRINTER_LIST CONTROL "&Include a cover page with faxes",IDC_USE_COVERPAGE, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,76,145,10,0, HIDC_MAPI_INCLUDE_COVER_PAGES LTEXT "&Cover Pages:",IDC_COVERPAGE_LIST_LABEL,10,92,60,8,0,0, HIDC_MAPI_COVERPAGE_LIST LISTBOX IDC_COVERPAGE_LIST,10,104,232,35,LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP,0,HIDC_MAPI_COVERPAGE_LIST CONTROL "Single &delivery receipt for multiple recipients", IDC_SEND_SINGLE_RECEIPT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP, 10,142,236,10,0,HIDC_MAPI_SEND_SINGLE_RECEIPT CONTROL "A&ttach a copy of a sent fax to its delivery notification receipt", IDC_ATTACH_FAX,"Button",BS_AUTOCHECKBOX | WS_TABSTOP, 10,155,235,10,0,HIDC_MAPI_ATTACH_FAX GROUPBOX "Default Message Font:",IDCSTATIC_FONT_GROUP,10,167,232,69 LTEXT "Font:",IDCSTATIC_FONT,17,177,47,10,0,0,HIDC_MAPI_FONT_NAME LTEXT "",IDC_FONT_NAME,17,190,100,12,0,WS_EX_CLIENTEDGE, HIDC_MAPI_FONT_NAME LTEXT "Font Style:",IDCSTATIC_FONTSTYLE,121,177,59,10,0,0, HIDC_MAPI_FONT_STYLE LTEXT "",IDC_FONT_STYLE,121,190,58,12,0,WS_EX_CLIENTEDGE, HIDC_MAPI_FONT_STYLE LTEXT "Size:",IDCSTATIC_FONTSIZE,184,177,45,10,0,0, HIDC_MAPI_FONT_SIZE LTEXT "",IDC_FONT_SIZE,184,190,50,12,0,WS_EX_CLIENTEDGE, HIDC_MAPI_FONT_SIZE PUSHBUTTON "&Set Font...",IDC_SET_FONT,160,211,75,14,0,0, HIDC_MAPI_BUT_SET_FONT DEFPUSHBUTTON "OK",IDOK,125,245,50,14,0,0,HIDOK PUSHBUTTON "Cancel",IDCANCEL,184,245,50,14,0,0,HIDCANCEL END
|