afxres.h 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782
  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10. #ifndef __AFXRES_H__
  11. #define __AFXRES_H__
  12. #ifndef WINSCP
  13. #ifdef RC_INVOKED
  14. #ifndef _INC_WINDOWS
  15. #define _INC_WINDOWS
  16. #include "winres.h" // extract from windows header
  17. #endif
  18. #endif
  19. #ifdef _AFX_MINREBUILD
  20. #pragma component(minrebuild, off)
  21. #endif
  22. #ifdef APSTUDIO_INVOKED
  23. #define APSTUDIO_HIDDEN_SYMBOLS
  24. #endif
  25. /////////////////////////////////////////////////////////////////////////////
  26. // MFC resource types (see Technical note TN024 for implementation details)
  27. #ifndef RC_INVOKED
  28. #define RT_DLGINIT MAKEINTRESOURCE(240)
  29. #define RT_TOOLBAR MAKEINTRESOURCE(241)
  30. #endif
  31. /////////////////////////////////////////////////////////////////////////////
  32. #ifdef APSTUDIO_INVOKED
  33. #undef APSTUDIO_HIDDEN_SYMBOLS
  34. #endif
  35. /////////////////////////////////////////////////////////////////////////////
  36. // General style bits etc
  37. // ControlBar styles
  38. #define CBRS_ALIGN_LEFT 0x1000L
  39. #define CBRS_ALIGN_TOP 0x2000L
  40. #define CBRS_ALIGN_RIGHT 0x4000L
  41. #define CBRS_ALIGN_BOTTOM 0x8000L
  42. #define CBRS_ALIGN_ANY 0xF000L
  43. #define CBRS_BORDER_LEFT 0x0100L
  44. #define CBRS_BORDER_TOP 0x0200L
  45. #define CBRS_BORDER_RIGHT 0x0400L
  46. #define CBRS_BORDER_BOTTOM 0x0800L
  47. #define CBRS_BORDER_ANY 0x0F00L
  48. #define CBRS_TOOLTIPS 0x0010L
  49. #define CBRS_FLYBY 0x0020L
  50. #define CBRS_FLOAT_MULTI 0x0040L
  51. #define CBRS_BORDER_3D 0x0080L
  52. #define CBRS_HIDE_INPLACE 0x0008L
  53. #define CBRS_SIZE_DYNAMIC 0x0004L
  54. #define CBRS_SIZE_FIXED 0x0002L
  55. #define CBRS_FLOATING 0x0001L
  56. #define CBRS_GRIPPER 0x00400000L
  57. #define CBRS_ORIENT_HORZ (CBRS_ALIGN_TOP|CBRS_ALIGN_BOTTOM)
  58. #define CBRS_ORIENT_VERT (CBRS_ALIGN_LEFT|CBRS_ALIGN_RIGHT)
  59. #define CBRS_ORIENT_ANY (CBRS_ORIENT_HORZ|CBRS_ORIENT_VERT)
  60. #define CBRS_ALL 0x0040FFFFL
  61. // the CBRS_ style is made up of an alignment style and a draw border style
  62. // the alignment styles are mutually exclusive
  63. // the draw border styles may be combined
  64. #define CBRS_NOALIGN 0x00000000L
  65. #define CBRS_LEFT (CBRS_ALIGN_LEFT|CBRS_BORDER_RIGHT)
  66. #define CBRS_TOP (CBRS_ALIGN_TOP|CBRS_BORDER_BOTTOM)
  67. #define CBRS_RIGHT (CBRS_ALIGN_RIGHT|CBRS_BORDER_LEFT)
  68. #define CBRS_BOTTOM (CBRS_ALIGN_BOTTOM|CBRS_BORDER_TOP)
  69. /////////////////////////////////////////////////////////////////////////////
  70. // Standard window components
  71. // Mode indicators in status bar - these are routed like commands
  72. #define ID_INDICATOR_EXT 0xE700 // extended selection indicator
  73. #define ID_INDICATOR_CAPS 0xE701 // cap lock indicator
  74. #define ID_INDICATOR_NUM 0xE702 // num lock indicator
  75. #define ID_INDICATOR_SCRL 0xE703 // scroll lock indicator
  76. #define ID_INDICATOR_OVR 0xE704 // overtype mode indicator
  77. #define ID_INDICATOR_REC 0xE705 // record mode indicator
  78. #define ID_INDICATOR_KANA 0xE706 // kana lock indicator
  79. #define ID_SEPARATOR 0 // special separator value
  80. #ifndef RC_INVOKED // code only
  81. // Standard control bars (IDW = window ID)
  82. #define AFX_IDW_CONTROLBAR_FIRST 0xE800
  83. #define AFX_IDW_CONTROLBAR_LAST 0xE8FF
  84. #define AFX_IDW_TOOLBAR 0xE800 // main Toolbar for window
  85. #define AFX_IDW_STATUS_BAR 0xE801 // Status bar window
  86. #define AFX_IDW_PREVIEW_BAR 0xE802 // PrintPreview Dialog Bar
  87. #define AFX_IDW_RESIZE_BAR 0xE803 // OLE in-place resize bar
  88. #define AFX_IDW_REBAR 0xE804 // COMCTL32 "rebar" Bar
  89. #define AFX_IDW_DIALOGBAR 0xE805 // CDialogBar
  90. // Note: If your application supports docking toolbars, you should
  91. // not use the following IDs for your own toolbars. The IDs chosen
  92. // are at the top of the first 32 such that the bars will be hidden
  93. // while in print preview mode, and are not likely to conflict with
  94. // IDs your application may have used succesfully in the past.
  95. #define AFX_IDW_DOCKBAR_TOP 0xE81B
  96. #define AFX_IDW_DOCKBAR_LEFT 0xE81C
  97. #define AFX_IDW_DOCKBAR_RIGHT 0xE81D
  98. #define AFX_IDW_DOCKBAR_BOTTOM 0xE81E
  99. #define AFX_IDW_DOCKBAR_FLOAT 0xE81F
  100. // Macro for mapping standard control bars to bitmask (limit of 32)
  101. #define AFX_CONTROLBAR_MASK(nIDC) (1L << (nIDC - AFX_IDW_CONTROLBAR_FIRST))
  102. // parts of Main Frame
  103. #define AFX_IDW_PANE_FIRST 0xE900 // first pane (256 max)
  104. #define AFX_IDW_PANE_LAST 0xE9ff
  105. #define AFX_IDW_HSCROLL_FIRST 0xEA00 // first Horz scrollbar (16 max)
  106. #define AFX_IDW_VSCROLL_FIRST 0xEA10 // first Vert scrollbar (16 max)
  107. #define AFX_IDW_SIZE_BOX 0xEA20 // size box for splitters
  108. #define AFX_IDW_PANE_SAVE 0xEA21 // to shift AFX_IDW_PANE_FIRST
  109. #endif //!RC_INVOKED
  110. #ifndef APSTUDIO_INVOKED
  111. // common style for form views
  112. #define AFX_WS_DEFAULT_VIEW (WS_CHILD | WS_VISIBLE | WS_BORDER)
  113. #endif //!APSTUDIO_INVOKED
  114. /////////////////////////////////////////////////////////////////////////////
  115. // Standard app configurable strings
  116. // for application title (defaults to EXE name or name in constructor)
  117. #define AFX_IDS_APP_TITLE 0xE000
  118. // idle message bar line
  119. #define AFX_IDS_IDLEMESSAGE 0xE001
  120. // message bar line when in shift-F1 help mode
  121. #define AFX_IDS_HELPMODEMESSAGE 0xE002
  122. // document title when editing OLE embedding
  123. #define AFX_IDS_APP_TITLE_EMBEDDING 0xE003
  124. // company name
  125. #define AFX_IDS_COMPANY_NAME 0xE004
  126. // object name when server is inplace
  127. #define AFX_IDS_OBJ_TITLE_INPLACE 0xE005
  128. /////////////////////////////////////////////////////////////////////////////
  129. // Standard Commands
  130. // File commands
  131. #define ID_FILE_NEW 0xE100
  132. #define ID_FILE_OPEN 0xE101
  133. #define ID_FILE_CLOSE 0xE102
  134. #define ID_FILE_SAVE 0xE103
  135. #define ID_FILE_SAVE_AS 0xE104
  136. #define ID_FILE_PAGE_SETUP 0xE105
  137. #define ID_FILE_PRINT_SETUP 0xE106
  138. #define ID_FILE_PRINT 0xE107
  139. #define ID_FILE_PRINT_DIRECT 0xE108
  140. #define ID_FILE_PRINT_PREVIEW 0xE109
  141. #define ID_FILE_UPDATE 0xE10A
  142. #define ID_FILE_SAVE_COPY_AS 0xE10B
  143. #define ID_FILE_SEND_MAIL 0xE10C
  144. #define ID_FILE_MRU_FIRST 0xE110
  145. #define ID_FILE_MRU_FILE1 0xE110 // range - 16 max
  146. #define ID_FILE_MRU_FILE2 0xE111
  147. #define ID_FILE_MRU_FILE3 0xE112
  148. #define ID_FILE_MRU_FILE4 0xE113
  149. #define ID_FILE_MRU_FILE5 0xE114
  150. #define ID_FILE_MRU_FILE6 0xE115
  151. #define ID_FILE_MRU_FILE7 0xE116
  152. #define ID_FILE_MRU_FILE8 0xE117
  153. #define ID_FILE_MRU_FILE9 0xE118
  154. #define ID_FILE_MRU_FILE10 0xE119
  155. #define ID_FILE_MRU_FILE11 0xE11A
  156. #define ID_FILE_MRU_FILE12 0xE11B
  157. #define ID_FILE_MRU_FILE13 0xE11C
  158. #define ID_FILE_MRU_FILE14 0xE11D
  159. #define ID_FILE_MRU_FILE15 0xE11E
  160. #define ID_FILE_MRU_FILE16 0xE11F
  161. #define ID_FILE_MRU_LAST 0xE11F
  162. // Edit commands
  163. #define ID_EDIT_CLEAR 0xE120
  164. #define ID_EDIT_CLEAR_ALL 0xE121
  165. #define ID_EDIT_COPY 0xE122
  166. #define ID_EDIT_CUT 0xE123
  167. #define ID_EDIT_FIND 0xE124
  168. #define ID_EDIT_PASTE 0xE125
  169. #define ID_EDIT_PASTE_LINK 0xE126
  170. #define ID_EDIT_PASTE_SPECIAL 0xE127
  171. #define ID_EDIT_REPEAT 0xE128
  172. #define ID_EDIT_REPLACE 0xE129
  173. #define ID_EDIT_SELECT_ALL 0xE12A
  174. #define ID_EDIT_UNDO 0xE12B
  175. #define ID_EDIT_REDO 0xE12C
  176. // Window commands
  177. #define ID_WINDOW_NEW 0xE130
  178. #define ID_WINDOW_ARRANGE 0xE131
  179. #define ID_WINDOW_CASCADE 0xE132
  180. #define ID_WINDOW_TILE_HORZ 0xE133
  181. #define ID_WINDOW_TILE_VERT 0xE134
  182. #define ID_WINDOW_SPLIT 0xE135
  183. #ifndef RC_INVOKED // code only
  184. #define AFX_IDM_WINDOW_FIRST 0xE130
  185. #define AFX_IDM_WINDOW_LAST 0xE13F
  186. #define AFX_IDM_FIRST_MDICHILD 0xFF00 // window list starts here
  187. #endif //!RC_INVOKED
  188. // Help and App commands
  189. #define ID_APP_ABOUT 0xE140
  190. #define ID_APP_EXIT 0xE141
  191. #define ID_HELP_INDEX 0xE142
  192. #define ID_HELP_FINDER 0xE143
  193. #define ID_HELP_USING 0xE144
  194. #define ID_CONTEXT_HELP 0xE145 // shift-F1
  195. // special commands for processing help
  196. #define ID_HELP 0xE146 // first attempt for F1
  197. #define ID_DEFAULT_HELP 0xE147 // last attempt
  198. // Misc
  199. #define ID_NEXT_PANE 0xE150
  200. #define ID_PREV_PANE 0xE151
  201. // Format
  202. #define ID_FORMAT_FONT 0xE160
  203. // OLE commands
  204. #define ID_OLE_INSERT_NEW 0xE200
  205. #define ID_OLE_EDIT_LINKS 0xE201
  206. #define ID_OLE_EDIT_CONVERT 0xE202
  207. #define ID_OLE_EDIT_CHANGE_ICON 0xE203
  208. #define ID_OLE_EDIT_PROPERTIES 0xE204
  209. #define ID_OLE_VERB_FIRST 0xE210 // range - 16 max
  210. #ifndef RC_INVOKED // code only
  211. #define ID_OLE_VERB_LAST 0xE21F
  212. #endif //!RC_INVOKED
  213. // for print preview dialog bar
  214. #define AFX_ID_PREVIEW_CLOSE 0xE300
  215. #define AFX_ID_PREVIEW_NUMPAGE 0xE301 // One/Two Page button
  216. #define AFX_ID_PREVIEW_NEXT 0xE302
  217. #define AFX_ID_PREVIEW_PREV 0xE303
  218. #define AFX_ID_PREVIEW_PRINT 0xE304
  219. #define AFX_ID_PREVIEW_ZOOMIN 0xE305
  220. #define AFX_ID_PREVIEW_ZOOMOUT 0xE306
  221. // View commands (same number used as IDW used for control bar)
  222. #define ID_VIEW_TOOLBAR 0xE800
  223. #define ID_VIEW_STATUS_BAR 0xE801
  224. #define ID_VIEW_REBAR 0xE804
  225. #define ID_VIEW_AUTOARRANGE 0xE805
  226. // E810 -> E81F must be kept in order for RANGE macros
  227. #define ID_VIEW_SMALLICON 0xE810
  228. #define ID_VIEW_LARGEICON 0xE811
  229. #define ID_VIEW_LIST 0xE812
  230. #define ID_VIEW_DETAILS 0xE813
  231. #define ID_VIEW_LINEUP 0xE814
  232. #define ID_VIEW_BYNAME 0xE815
  233. #define AFX_ID_VIEW_MINIMUM ID_VIEW_SMALLICON
  234. #define AFX_ID_VIEW_MAXIMUM ID_VIEW_BYNAME
  235. // E800 -> E8FF reserved for other control bar commands
  236. // RecordForm commands
  237. #define ID_RECORD_FIRST 0xE900
  238. #define ID_RECORD_LAST 0xE901
  239. #define ID_RECORD_NEXT 0xE902
  240. #define ID_RECORD_PREV 0xE903
  241. /////////////////////////////////////////////////////////////////////////////
  242. // Standard control IDs
  243. #ifdef IDC_STATIC
  244. #undef IDC_STATIC
  245. #endif
  246. #define IDC_STATIC (-1) // all static controls
  247. /////////////////////////////////////////////////////////////////////////////
  248. // Standard string error/warnings
  249. #ifndef RC_INVOKED // code only
  250. #define AFX_IDS_SCFIRST 0xEF00
  251. #endif //!RC_INVOKED
  252. #define AFX_IDS_SCSIZE 0xEF00
  253. #define AFX_IDS_SCMOVE 0xEF01
  254. #define AFX_IDS_SCMINIMIZE 0xEF02
  255. #define AFX_IDS_SCMAXIMIZE 0xEF03
  256. #define AFX_IDS_SCNEXTWINDOW 0xEF04
  257. #define AFX_IDS_SCPREVWINDOW 0xEF05
  258. #define AFX_IDS_SCCLOSE 0xEF06
  259. #define AFX_IDS_SCRESTORE 0xEF12
  260. #define AFX_IDS_SCTASKLIST 0xEF13
  261. #define AFX_IDS_MDICHILD 0xEF1F
  262. #define AFX_IDS_DESKACCESSORY 0xEFDA
  263. // General strings
  264. #define AFX_IDS_OPENFILE 0xF000
  265. #define AFX_IDS_SAVEFILE 0xF001
  266. #define AFX_IDS_ALLFILTER 0xF002
  267. #define AFX_IDS_UNTITLED 0xF003
  268. #define AFX_IDS_SAVEFILECOPY 0xF004
  269. #define AFX_IDS_PREVIEW_CLOSE 0xF005
  270. #endif // WINSCP
  271. #define AFX_IDS_UNNAMED_FILE 0xF006
  272. #ifndef WINSCP
  273. #define AFX_IDS_HIDE 0xF011
  274. #endif // WINSCP
  275. // MFC Standard Exception Error messages
  276. #define AFX_IDP_NO_ERROR_AVAILABLE 0xF020
  277. #define AFX_IDS_NOT_SUPPORTED_EXCEPTION 0xF021
  278. #define AFX_IDS_RESOURCE_EXCEPTION 0xF022
  279. #define AFX_IDS_MEMORY_EXCEPTION 0xF023
  280. #define AFX_IDS_USER_EXCEPTION 0xF024
  281. #ifndef WINSCP
  282. // Printing and print preview strings
  283. #define AFX_IDS_PRINTONPORT 0xF040
  284. #define AFX_IDS_ONEPAGE 0xF041
  285. #define AFX_IDS_TWOPAGE 0xF042
  286. #define AFX_IDS_PRINTPAGENUM 0xF043
  287. #define AFX_IDS_PREVIEWPAGEDESC 0xF044
  288. #define AFX_IDS_PRINTDEFAULTEXT 0xF045
  289. #define AFX_IDS_PRINTDEFAULT 0xF046
  290. #define AFX_IDS_PRINTFILTER 0xF047
  291. #define AFX_IDS_PRINTCAPTION 0xF048
  292. #define AFX_IDS_PRINTTOFILE 0xF049
  293. // OLE strings
  294. #define AFX_IDS_OBJECT_MENUITEM 0xF080
  295. #define AFX_IDS_EDIT_VERB 0xF081
  296. #define AFX_IDS_ACTIVATE_VERB 0xF082
  297. #define AFX_IDS_CHANGE_LINK 0xF083
  298. #define AFX_IDS_AUTO 0xF084
  299. #define AFX_IDS_MANUAL 0xF085
  300. #define AFX_IDS_FROZEN 0xF086
  301. #define AFX_IDS_ALL_FILES 0xF087
  302. // dynamically changing menu items
  303. #define AFX_IDS_SAVE_MENU 0xF088
  304. #define AFX_IDS_UPDATE_MENU 0xF089
  305. #define AFX_IDS_SAVE_AS_MENU 0xF08A
  306. #define AFX_IDS_SAVE_COPY_AS_MENU 0xF08B
  307. #define AFX_IDS_EXIT_MENU 0xF08C
  308. #define AFX_IDS_UPDATING_ITEMS 0xF08D
  309. // COlePasteSpecialDialog defines
  310. #define AFX_IDS_METAFILE_FORMAT 0xF08E
  311. #define AFX_IDS_DIB_FORMAT 0xF08F
  312. #define AFX_IDS_BITMAP_FORMAT 0xF090
  313. #define AFX_IDS_LINKSOURCE_FORMAT 0xF091
  314. #define AFX_IDS_EMBED_FORMAT 0xF092
  315. // other OLE utility strings
  316. #define AFX_IDS_PASTELINKEDTYPE 0xF094
  317. #define AFX_IDS_UNKNOWNTYPE 0xF095
  318. #define AFX_IDS_RTF_FORMAT 0xF096
  319. #define AFX_IDS_TEXT_FORMAT 0xF097
  320. // OLE datatype format error strings
  321. #define AFX_IDS_INVALID_CURRENCY 0xF098
  322. #define AFX_IDS_INVALID_DATETIME 0xF099
  323. #define AFX_IDS_INVALID_DATETIMESPAN 0xF09A
  324. // General error / prompt strings
  325. #define AFX_IDP_INVALID_FILENAME 0xF100
  326. #define AFX_IDP_FAILED_TO_OPEN_DOC 0xF101
  327. #define AFX_IDP_FAILED_TO_SAVE_DOC 0xF102
  328. #define AFX_IDP_ASK_TO_SAVE 0xF103
  329. #define AFX_IDP_FAILED_TO_CREATE_DOC 0xF104
  330. #define AFX_IDP_FILE_TOO_LARGE 0xF105
  331. #define AFX_IDP_FAILED_TO_START_PRINT 0xF106
  332. #define AFX_IDP_FAILED_TO_LAUNCH_HELP 0xF107
  333. #define AFX_IDP_INTERNAL_FAILURE 0xF108 // general failure
  334. #define AFX_IDP_COMMAND_FAILURE 0xF109 // command failure
  335. #define AFX_IDP_FAILED_MEMORY_ALLOC 0xF10A
  336. #define AFX_IDP_UNREG_DONE 0xF10B
  337. #define AFX_IDP_UNREG_FAILURE 0xF10C
  338. #define AFX_IDP_DLL_LOAD_FAILED 0xF10D
  339. #define AFX_IDP_DLL_BAD_VERSION 0xF10E
  340. // DDV parse errors
  341. #define AFX_IDP_PARSE_INT 0xF110
  342. #define AFX_IDP_PARSE_REAL 0xF111
  343. #define AFX_IDP_PARSE_INT_RANGE 0xF112
  344. #define AFX_IDP_PARSE_REAL_RANGE 0xF113
  345. #define AFX_IDP_PARSE_STRING_SIZE 0xF114
  346. #define AFX_IDP_PARSE_RADIO_BUTTON 0xF115
  347. #define AFX_IDP_PARSE_BYTE 0xF116
  348. #define AFX_IDP_PARSE_UINT 0xF117
  349. #define AFX_IDP_PARSE_DATETIME 0xF118
  350. #define AFX_IDP_PARSE_CURRENCY 0xF119
  351. // CFile/CArchive error strings for user failure
  352. #define AFX_IDP_FAILED_INVALID_FORMAT 0xF120
  353. #define AFX_IDP_FAILED_INVALID_PATH 0xF121
  354. #define AFX_IDP_FAILED_DISK_FULL 0xF122
  355. #define AFX_IDP_FAILED_ACCESS_READ 0xF123
  356. #define AFX_IDP_FAILED_ACCESS_WRITE 0xF124
  357. #define AFX_IDP_FAILED_IO_ERROR_READ 0xF125
  358. #define AFX_IDP_FAILED_IO_ERROR_WRITE 0xF126
  359. // OLE errors / prompt strings
  360. #define AFX_IDP_STATIC_OBJECT 0xF180
  361. #define AFX_IDP_FAILED_TO_CONNECT 0xF181
  362. #define AFX_IDP_SERVER_BUSY 0xF182
  363. #define AFX_IDP_BAD_VERB 0xF183
  364. #define AFX_IDS_NOT_DOCOBJECT 0xF184
  365. #define AFX_IDP_FAILED_TO_NOTIFY 0xF185
  366. #define AFX_IDP_FAILED_TO_LAUNCH 0xF186
  367. #define AFX_IDP_ASK_TO_UPDATE 0xF187
  368. #define AFX_IDP_FAILED_TO_UPDATE 0xF188
  369. #define AFX_IDP_FAILED_TO_REGISTER 0xF189
  370. #define AFX_IDP_FAILED_TO_AUTO_REGISTER 0xF18A
  371. #define AFX_IDP_FAILED_TO_CONVERT 0xF18B
  372. #define AFX_IDP_GET_NOT_SUPPORTED 0xF18C
  373. #define AFX_IDP_SET_NOT_SUPPORTED 0xF18D
  374. #define AFX_IDP_ASK_TO_DISCARD 0xF18E
  375. #define AFX_IDP_FAILED_TO_CREATE 0xF18F
  376. // MAPI errors / prompt strings
  377. #define AFX_IDP_FAILED_MAPI_LOAD 0xF190
  378. #define AFX_IDP_INVALID_MAPI_DLL 0xF191
  379. #define AFX_IDP_FAILED_MAPI_SEND 0xF192
  380. #endif // WINSCP
  381. #define AFX_IDP_FILE_NONE 0xF1A0
  382. #define AFX_IDP_FILE_GENERIC 0xF1A1
  383. #define AFX_IDP_FILE_NOT_FOUND 0xF1A2
  384. #define AFX_IDP_FILE_BAD_PATH 0xF1A3
  385. #define AFX_IDP_FILE_TOO_MANY_OPEN 0xF1A4
  386. #define AFX_IDP_FILE_ACCESS_DENIED 0xF1A5
  387. #define AFX_IDP_FILE_INVALID_FILE 0xF1A6
  388. #define AFX_IDP_FILE_REMOVE_CURRENT 0xF1A7
  389. #define AFX_IDP_FILE_DIR_FULL 0xF1A8
  390. #define AFX_IDP_FILE_BAD_SEEK 0xF1A9
  391. #define AFX_IDP_FILE_HARD_IO 0xF1AA
  392. #define AFX_IDP_FILE_SHARING 0xF1AB
  393. #define AFX_IDP_FILE_LOCKING 0xF1AC
  394. #define AFX_IDP_FILE_DISKFULL 0xF1AD
  395. #define AFX_IDP_FILE_EOF 0xF1AE
  396. #ifndef WINSCP
  397. #define AFX_IDP_ARCH_NONE 0xF1B0
  398. #define AFX_IDP_ARCH_GENERIC 0xF1B1
  399. #define AFX_IDP_ARCH_READONLY 0xF1B2
  400. #define AFX_IDP_ARCH_ENDOFFILE 0xF1B3
  401. #define AFX_IDP_ARCH_WRITEONLY 0xF1B4
  402. #define AFX_IDP_ARCH_BADINDEX 0xF1B5
  403. #define AFX_IDP_ARCH_BADCLASS 0xF1B6
  404. #define AFX_IDP_ARCH_BADSCHEMA 0xF1B7
  405. #define AFX_IDS_OCC_SCALEUNITS_PIXELS 0xF1C0
  406. // 0xf200-0xf20f reserved
  407. // font names and point sizes
  408. #define AFX_IDS_STATUS_FONT 0xF230
  409. #define AFX_IDS_TOOLTIP_FONT 0xF231
  410. #define AFX_IDS_UNICODE_FONT 0xF232
  411. #define AFX_IDS_MINI_FONT 0xF233
  412. // ODBC Database errors / prompt strings
  413. #ifndef RC_INVOKED // code only
  414. #define AFX_IDP_SQL_FIRST 0xF280
  415. #endif //!RC_INVOKED
  416. #define AFX_IDP_SQL_CONNECT_FAIL 0xF281
  417. #define AFX_IDP_SQL_RECORDSET_FORWARD_ONLY 0xF282
  418. #define AFX_IDP_SQL_EMPTY_COLUMN_LIST 0xF283
  419. #define AFX_IDP_SQL_FIELD_SCHEMA_MISMATCH 0xF284
  420. #define AFX_IDP_SQL_ILLEGAL_MODE 0xF285
  421. #define AFX_IDP_SQL_MULTIPLE_ROWS_AFFECTED 0xF286
  422. #define AFX_IDP_SQL_NO_CURRENT_RECORD 0xF287
  423. #define AFX_IDP_SQL_NO_ROWS_AFFECTED 0xF288
  424. #define AFX_IDP_SQL_RECORDSET_READONLY 0xF289
  425. #define AFX_IDP_SQL_SQL_NO_TOTAL 0xF28A
  426. #define AFX_IDP_SQL_ODBC_LOAD_FAILED 0xF28B
  427. #define AFX_IDP_SQL_DYNASET_NOT_SUPPORTED 0xF28C
  428. #define AFX_IDP_SQL_SNAPSHOT_NOT_SUPPORTED 0xF28D
  429. #define AFX_IDP_SQL_API_CONFORMANCE 0xF28E
  430. #define AFX_IDP_SQL_SQL_CONFORMANCE 0xF28F
  431. #define AFX_IDP_SQL_NO_DATA_FOUND 0xF290
  432. #define AFX_IDP_SQL_ROW_UPDATE_NOT_SUPPORTED 0xF291
  433. #define AFX_IDP_SQL_ODBC_V2_REQUIRED 0xF292
  434. #define AFX_IDP_SQL_NO_POSITIONED_UPDATES 0xF293
  435. #define AFX_IDP_SQL_LOCK_MODE_NOT_SUPPORTED 0xF294
  436. #define AFX_IDP_SQL_DATA_TRUNCATED 0xF295
  437. #define AFX_IDP_SQL_ROW_FETCH 0xF296
  438. #define AFX_IDP_SQL_INCORRECT_ODBC 0xF297
  439. #define AFX_IDP_SQL_UPDATE_DELETE_FAILED 0xF298
  440. #define AFX_IDP_SQL_DYNAMIC_CURSOR_NOT_SUPPORTED 0xF299
  441. #define AFX_IDP_SQL_FIELD_NOT_FOUND 0xF29A
  442. #define AFX_IDP_SQL_BOOKMARKS_NOT_SUPPORTED 0xF29B
  443. #define AFX_IDP_SQL_BOOKMARKS_NOT_ENABLED 0xF29C
  444. // ODBC Database strings
  445. #define AFX_IDS_DELETED 0xF29D
  446. // DAO Database errors / prompt strings
  447. #ifndef RC_INVOKED // code only
  448. #define AFX_IDP_DAO_FIRST 0xF2B0
  449. #endif //!RC_INVOKED
  450. #define AFX_IDP_DAO_ENGINE_INITIALIZATION 0xF2B0
  451. #define AFX_IDP_DAO_DFX_BIND 0xF2B1
  452. #define AFX_IDP_DAO_OBJECT_NOT_OPEN 0xF2B2
  453. // ICDAORecordset::GetRows Errors
  454. // These are not placed in DAO Errors collection
  455. // and must be handled directly by MFC.
  456. #define AFX_IDP_DAO_ROWTOOSHORT 0xF2B3
  457. #define AFX_IDP_DAO_BADBINDINFO 0xF2B4
  458. #define AFX_IDP_DAO_COLUMNUNAVAILABLE 0xF2B5
  459. /////////////////////////////////////////////////////////////////////////////
  460. // Strings for ISAPI support
  461. #define AFX_IDS_HTTP_TITLE 0xF2D1
  462. #define AFX_IDS_HTTP_NO_TEXT 0xF2D2
  463. #define AFX_IDS_HTTP_BAD_REQUEST 0xF2D3
  464. #define AFX_IDS_HTTP_AUTH_REQUIRED 0xF2D4
  465. #define AFX_IDS_HTTP_FORBIDDEN 0xF2D5
  466. #define AFX_IDS_HTTP_NOT_FOUND 0xF2D6
  467. #define AFX_IDS_HTTP_SERVER_ERROR 0xF2D7
  468. #define AFX_IDS_HTTP_NOT_IMPLEMENTED 0xF2D8
  469. /////////////////////////////////////////////////////////////////////////////
  470. // AFX implementation - control IDs (AFX_IDC)
  471. // Parts of dialogs
  472. #define AFX_IDC_LISTBOX 100
  473. #define AFX_IDC_CHANGE 101
  474. // for print dialog
  475. #define AFX_IDC_PRINT_DOCNAME 201
  476. #define AFX_IDC_PRINT_PRINTERNAME 202
  477. #define AFX_IDC_PRINT_PORTNAME 203
  478. #define AFX_IDC_PRINT_PAGENUM 204
  479. // Property Sheet control id's (determined with Spy++)
  480. #define ID_APPLY_NOW 0x3021
  481. #define ID_WIZBACK 0x3023
  482. #define ID_WIZNEXT 0x3024
  483. #define ID_WIZFINISH 0x3025
  484. #define AFX_IDC_TAB_CONTROL 0x3020
  485. /////////////////////////////////////////////////////////////////////////////
  486. // IDRs for standard components
  487. #ifndef RC_INVOKED // code only
  488. // These are really COMMDLG dialogs, so there usually isn't a resource
  489. // for them, but these IDs are used as help IDs.
  490. #define AFX_IDD_FILEOPEN 28676
  491. #define AFX_IDD_FILESAVE 28677
  492. #define AFX_IDD_FONT 28678
  493. #define AFX_IDD_COLOR 28679
  494. #define AFX_IDD_PRINT 28680
  495. #define AFX_IDD_PRINTSETUP 28681
  496. #define AFX_IDD_FIND 28682
  497. #define AFX_IDD_REPLACE 28683
  498. #endif //!RC_INVOKED
  499. // Standard dialogs app should leave alone (0x7801->)
  500. #define AFX_IDD_NEWTYPEDLG 30721
  501. #define AFX_IDD_PRINTDLG 30722
  502. #define AFX_IDD_PREVIEW_TOOLBAR 30723
  503. // Dialogs defined for OLE2UI library
  504. #define AFX_IDD_INSERTOBJECT 30724
  505. #define AFX_IDD_CHANGEICON 30725
  506. #define AFX_IDD_CONVERT 30726
  507. #define AFX_IDD_PASTESPECIAL 30727
  508. #define AFX_IDD_EDITLINKS 30728
  509. #define AFX_IDD_FILEBROWSE 30729
  510. #define AFX_IDD_BUSY 30730
  511. #define AFX_IDD_OBJECTPROPERTIES 30732
  512. #define AFX_IDD_CHANGESOURCE 30733
  513. // Standard cursors (0x7901->)
  514. // AFX_IDC = Cursor resources
  515. #define AFX_IDC_CONTEXTHELP 30977 // context sensitive help
  516. #define AFX_IDC_MAGNIFY 30978 // print preview zoom
  517. #define AFX_IDC_SMALLARROWS 30979 // splitter
  518. #define AFX_IDC_HSPLITBAR 30980 // splitter
  519. #define AFX_IDC_VSPLITBAR 30981 // splitter
  520. #define AFX_IDC_NODROPCRSR 30982 // No Drop Cursor
  521. #define AFX_IDC_TRACKNWSE 30983 // tracker
  522. #define AFX_IDC_TRACKNESW 30984 // tracker
  523. #define AFX_IDC_TRACKNS 30985 // tracker
  524. #define AFX_IDC_TRACKWE 30986 // tracker
  525. #define AFX_IDC_TRACK4WAY 30987 // tracker
  526. #define AFX_IDC_MOVE4WAY 30988 // resize bar (server only)
  527. // Mini frame window bitmap ID
  528. #define AFX_IDB_MINIFRAME_MENU 30994
  529. // CheckListBox checks bitmap ID
  530. #define AFX_IDB_CHECKLISTBOX_NT 30995
  531. #define AFX_IDB_CHECKLISTBOX_95 30996
  532. // AFX standard accelerator resources
  533. #define AFX_IDR_PREVIEW_ACCEL 30997
  534. // AFX standard ICON IDs (for MFC V1 apps) (0x7A01->)
  535. #define AFX_IDI_STD_MDIFRAME 31233
  536. #define AFX_IDI_STD_FRAME 31234
  537. /////////////////////////////////////////////////////////////////////////////
  538. // AFX OLE control implementation - control IDs (AFX_IDC)
  539. // Font property page
  540. #define AFX_IDC_FONTPROP 1000
  541. #define AFX_IDC_FONTNAMES 1001
  542. #define AFX_IDC_FONTSTYLES 1002
  543. #define AFX_IDC_FONTSIZES 1003
  544. #define AFX_IDC_STRIKEOUT 1004
  545. #define AFX_IDC_UNDERLINE 1005
  546. #define AFX_IDC_SAMPLEBOX 1006
  547. // Color property page
  548. #define AFX_IDC_COLOR_BLACK 1100
  549. #define AFX_IDC_COLOR_WHITE 1101
  550. #define AFX_IDC_COLOR_RED 1102
  551. #define AFX_IDC_COLOR_GREEN 1103
  552. #define AFX_IDC_COLOR_BLUE 1104
  553. #define AFX_IDC_COLOR_YELLOW 1105
  554. #define AFX_IDC_COLOR_MAGENTA 1106
  555. #define AFX_IDC_COLOR_CYAN 1107
  556. #define AFX_IDC_COLOR_GRAY 1108
  557. #define AFX_IDC_COLOR_LIGHTGRAY 1109
  558. #define AFX_IDC_COLOR_DARKRED 1110
  559. #define AFX_IDC_COLOR_DARKGREEN 1111
  560. #define AFX_IDC_COLOR_DARKBLUE 1112
  561. #define AFX_IDC_COLOR_LIGHTBROWN 1113
  562. #define AFX_IDC_COLOR_DARKMAGENTA 1114
  563. #define AFX_IDC_COLOR_DARKCYAN 1115
  564. #define AFX_IDC_COLORPROP 1116
  565. #define AFX_IDC_SYSTEMCOLORS 1117
  566. // Picture porperty page
  567. #define AFX_IDC_PROPNAME 1201
  568. #define AFX_IDC_PICTURE 1202
  569. #define AFX_IDC_BROWSE 1203
  570. #define AFX_IDC_CLEAR 1204
  571. /////////////////////////////////////////////////////////////////////////////
  572. // IDRs for OLE control standard components
  573. // Standard propery page dialogs app should leave alone (0x7E01->)
  574. #define AFX_IDD_PROPPAGE_COLOR 32257
  575. #define AFX_IDD_PROPPAGE_FONT 32258
  576. #define AFX_IDD_PROPPAGE_PICTURE 32259
  577. #define AFX_IDB_TRUETYPE 32384
  578. /////////////////////////////////////////////////////////////////////////////
  579. // Standard OLE control strings
  580. // OLE Control page strings
  581. #define AFX_IDS_PROPPAGE_UNKNOWN 0xFE01
  582. #define AFX_IDS_COLOR_DESKTOP 0xFE04
  583. #define AFX_IDS_COLOR_APPWORKSPACE 0xFE05
  584. #define AFX_IDS_COLOR_WNDBACKGND 0xFE06
  585. #define AFX_IDS_COLOR_WNDTEXT 0xFE07
  586. #define AFX_IDS_COLOR_MENUBAR 0xFE08
  587. #define AFX_IDS_COLOR_MENUTEXT 0xFE09
  588. #define AFX_IDS_COLOR_ACTIVEBAR 0xFE0A
  589. #define AFX_IDS_COLOR_INACTIVEBAR 0xFE0B
  590. #define AFX_IDS_COLOR_ACTIVETEXT 0xFE0C
  591. #define AFX_IDS_COLOR_INACTIVETEXT 0xFE0D
  592. #define AFX_IDS_COLOR_ACTIVEBORDER 0xFE0E
  593. #define AFX_IDS_COLOR_INACTIVEBORDER 0xFE0F
  594. #define AFX_IDS_COLOR_WNDFRAME 0xFE10
  595. #define AFX_IDS_COLOR_SCROLLBARS 0xFE11
  596. #define AFX_IDS_COLOR_BTNFACE 0xFE12
  597. #define AFX_IDS_COLOR_BTNSHADOW 0xFE13
  598. #define AFX_IDS_COLOR_BTNTEXT 0xFE14
  599. #define AFX_IDS_COLOR_BTNHIGHLIGHT 0xFE15
  600. #define AFX_IDS_COLOR_DISABLEDTEXT 0xFE16
  601. #define AFX_IDS_COLOR_HIGHLIGHT 0xFE17
  602. #define AFX_IDS_COLOR_HIGHLIGHTTEXT 0xFE18
  603. #define AFX_IDS_REGULAR 0xFE19
  604. #define AFX_IDS_BOLD 0xFE1A
  605. #define AFX_IDS_ITALIC 0xFE1B
  606. #define AFX_IDS_BOLDITALIC 0xFE1C
  607. #define AFX_IDS_SAMPLETEXT 0xFE1D
  608. #define AFX_IDS_DISPLAYSTRING_FONT 0xFE1E
  609. #define AFX_IDS_DISPLAYSTRING_COLOR 0xFE1F
  610. #define AFX_IDS_DISPLAYSTRING_PICTURE 0xFE20
  611. #define AFX_IDS_PICTUREFILTER 0xFE21
  612. #define AFX_IDS_PICTYPE_UNKNOWN 0xFE22
  613. #define AFX_IDS_PICTYPE_NONE 0xFE23
  614. #define AFX_IDS_PICTYPE_BITMAP 0xFE24
  615. #define AFX_IDS_PICTYPE_METAFILE 0xFE25
  616. #define AFX_IDS_PICTYPE_ICON 0xFE26
  617. #define AFX_IDS_COLOR_PPG 0xFE28
  618. #define AFX_IDS_COLOR_PPG_CAPTION 0xFE29
  619. #define AFX_IDS_FONT_PPG 0xFE2A
  620. #define AFX_IDS_FONT_PPG_CAPTION 0xFE2B
  621. #define AFX_IDS_PICTURE_PPG 0xFE2C
  622. #define AFX_IDS_PICTURE_PPG_CAPTION 0xFE2D
  623. #define AFX_IDS_PICTUREBROWSETITLE 0xFE30
  624. #define AFX_IDS_BORDERSTYLE_0 0xFE31
  625. #define AFX_IDS_BORDERSTYLE_1 0xFE32
  626. // OLE Control verb names
  627. #define AFX_IDS_VERB_EDIT 0xFE40
  628. #define AFX_IDS_VERB_PROPERTIES 0xFE41
  629. // OLE Control internal error messages
  630. #define AFX_IDP_PICTURECANTOPEN 0xFE83
  631. #define AFX_IDP_PICTURECANTLOAD 0xFE84
  632. #define AFX_IDP_PICTURETOOLARGE 0xFE85
  633. #define AFX_IDP_PICTUREREADFAILED 0xFE86
  634. // Standard OLE Control error strings
  635. #define AFX_IDP_E_ILLEGALFUNCTIONCALL 0xFEA0
  636. #define AFX_IDP_E_OVERFLOW 0xFEA1
  637. #define AFX_IDP_E_OUTOFMEMORY 0xFEA2
  638. #define AFX_IDP_E_DIVISIONBYZERO 0xFEA3
  639. #define AFX_IDP_E_OUTOFSTRINGSPACE 0xFEA4
  640. #define AFX_IDP_E_OUTOFSTACKSPACE 0xFEA5
  641. #define AFX_IDP_E_BADFILENAMEORNUMBER 0xFEA6
  642. #define AFX_IDP_E_FILENOTFOUND 0xFEA7
  643. #define AFX_IDP_E_BADFILEMODE 0xFEA8
  644. #define AFX_IDP_E_FILEALREADYOPEN 0xFEA9
  645. #define AFX_IDP_E_DEVICEIOERROR 0xFEAA
  646. #define AFX_IDP_E_FILEALREADYEXISTS 0xFEAB
  647. #define AFX_IDP_E_BADRECORDLENGTH 0xFEAC
  648. #define AFX_IDP_E_DISKFULL 0xFEAD
  649. #define AFX_IDP_E_BADRECORDNUMBER 0xFEAE
  650. #define AFX_IDP_E_BADFILENAME 0xFEAF
  651. #define AFX_IDP_E_TOOMANYFILES 0xFEB0
  652. #define AFX_IDP_E_DEVICEUNAVAILABLE 0xFEB1
  653. #define AFX_IDP_E_PERMISSIONDENIED 0xFEB2
  654. #define AFX_IDP_E_DISKNOTREADY 0xFEB3
  655. #define AFX_IDP_E_PATHFILEACCESSERROR 0xFEB4
  656. #define AFX_IDP_E_PATHNOTFOUND 0xFEB5
  657. #define AFX_IDP_E_INVALIDPATTERNSTRING 0xFEB6
  658. #define AFX_IDP_E_INVALIDUSEOFNULL 0xFEB7
  659. #define AFX_IDP_E_INVALIDFILEFORMAT 0xFEB8
  660. #define AFX_IDP_E_INVALIDPROPERTYVALUE 0xFEB9
  661. #define AFX_IDP_E_INVALIDPROPERTYARRAYINDEX 0xFEBA
  662. #define AFX_IDP_E_SETNOTSUPPORTEDATRUNTIME 0xFEBB
  663. #define AFX_IDP_E_SETNOTSUPPORTED 0xFEBC
  664. #define AFX_IDP_E_NEEDPROPERTYARRAYINDEX 0xFEBD
  665. #define AFX_IDP_E_SETNOTPERMITTED 0xFEBE
  666. #define AFX_IDP_E_GETNOTSUPPORTEDATRUNTIME 0xFEBF
  667. #define AFX_IDP_E_GETNOTSUPPORTED 0xFEC0
  668. #define AFX_IDP_E_PROPERTYNOTFOUND 0xFEC1
  669. #define AFX_IDP_E_INVALIDCLIPBOARDFORMAT 0xFEC2
  670. #define AFX_IDP_E_INVALIDPICTURE 0xFEC3
  671. #define AFX_IDP_E_PRINTERERROR 0xFEC4
  672. #define AFX_IDP_E_CANTSAVEFILETOTEMP 0xFEC5
  673. #define AFX_IDP_E_SEARCHTEXTNOTFOUND 0xFEC6
  674. #define AFX_IDP_E_REPLACEMENTSTOOLONG 0xFEC7
  675. /////////////////////////////////////////////////////////////////////////////
  676. #ifdef _AFX_MINREBUILD
  677. #pragma component(minrebuild, on)
  678. #endif
  679. #endif // WINSCP
  680. #endif //__AFXRES_H__
  681. /////////////////////////////////////////////////////////////////////////////