62 lines
3.2 KiB
C
62 lines
3.2 KiB
C
|
//////////////////////////////////////////////////////
|
||
|
// //
|
||
|
// Fax Cover Page Editor resource ID file //
|
||
|
// It compiles as part of FxsRes.dll //
|
||
|
// All the IDs should be in range //
|
||
|
// //
|
||
|
// [2000 - 2100] //
|
||
|
// //
|
||
|
//////////////////////////////////////////////////////
|
||
|
|
||
|
|
||
|
#ifndef _COVER_PAGE_ID_H_
|
||
|
#define _COVER_PAGE_ID_H_
|
||
|
|
||
|
//
|
||
|
// Cover page text box IDs.
|
||
|
//
|
||
|
#define IDS_PROP_RP_NAME 2001 // Recipient Name
|
||
|
#define IDS_PROP_RP_FXNO 2003 // Recipient Fax Number
|
||
|
#define IDS_PROP_RP_COMP 2005 // Recipient's Company
|
||
|
#define IDS_PROP_RP_ADDR 2007 // Recipient's Street Address
|
||
|
#define IDS_PROP_RP_TITL 2009 // Recipient's Title
|
||
|
#define IDS_PROP_RP_DEPT 2011 // Recipient's Department
|
||
|
#define IDS_PROP_RP_OFFI 2013 // Recipient's Office Location
|
||
|
#define IDS_PROP_RP_HTEL 2015 // Recipient's Home Telephone #
|
||
|
#define IDS_PROP_RP_OTEL 2017 // Recipient's Office Telephone #
|
||
|
#define IDS_PROP_RP_TOLS 2019 // To: List
|
||
|
#define IDS_PROP_RP_CCLS 2021 // Cc: List
|
||
|
#define IDS_PROP_SN_NAME 2023 // Sender Name
|
||
|
#define IDS_PROP_SN_FXNO 2025 // Sender Fax #
|
||
|
#define IDS_PROP_SN_COMP 2027 // Sender's Company
|
||
|
#define IDS_PROP_SN_ADDR 2029 // Sender's Address
|
||
|
#define IDS_PROP_SN_TITL 2031 // Sender's Title
|
||
|
#define IDS_PROP_SN_DEPT 2033 // Sender's Department
|
||
|
#define IDS_PROP_SN_OFFI 2035 // Sender's Office Location
|
||
|
#define IDS_PROP_SN_HTEL 2037 // Sender's Home Telephone #
|
||
|
#define IDS_PROP_SN_OTEL 2039 // Sender's Office Telephone #
|
||
|
#define IDS_PROP_MS_SUBJ 2041 // Subject
|
||
|
#define IDS_PROP_MS_TSNT 2043 // Time Sent
|
||
|
#define IDS_PROP_MS_NOPG 2045 // # of Pages
|
||
|
#define IDS_PROP_MS_NOAT 2047 // # of Attachments
|
||
|
#define IDS_PROP_MS_BCOD 2049 // Billing Code
|
||
|
#define IDS_PROP_RP_CITY 2053 // Recipient's City
|
||
|
#define IDS_PROP_RP_STAT 2055 // Recipient's State
|
||
|
#define IDS_PROP_RP_ZIPC 2057 // Recipient's Zip Code
|
||
|
#define IDS_PROP_RP_CTRY 2059 // Recipient's Country
|
||
|
#define IDS_PROP_RP_POBX 2061 // Recipient's Post Office Box
|
||
|
#define IDS_PROP_MS_NOTE 2063 // Note
|
||
|
#define IDS_PROP_SN_EMAL 2065 // Sender's E-mail
|
||
|
|
||
|
//////////////////////////////////////////////////////
|
||
|
// //
|
||
|
// Fax Cover Page Editor resource ID file //
|
||
|
// It compiles as part of FxsRes.dll //
|
||
|
// All the IDs should be in range //
|
||
|
// //
|
||
|
// [2000 - 2100] //
|
||
|
// //
|
||
|
//////////////////////////////////////////////////////
|
||
|
|
||
|
#endif // _COVER_PAGE_ID_H_
|