Leaked source code of windows server 2003
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.

606 lines
25 KiB

  1. // Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1993 Microsoft Corporation,
  3. // All rights reserved.
  4. // This source code is only intended as a supplement to the
  5. // Microsoft Foundation Classes Reference and Microsoft
  6. // QuickHelp and/or WinHelp documentation provided with the library.
  7. // See these sources for detailed information regarding the
  8. // Microsoft Foundation Classes product.
  9. #ifndef __AFXRES_H__
  10. #define __AFXRES_H__
  11. #define _AFXRES 1 // this is an MFC project
  12. #ifdef RC_INVOKED
  13. #ifndef _INC_WINDOWS
  14. #define _INC_WINDOWS
  15. #include <winres.h> // extract from windows header
  16. #endif
  17. #endif
  18. #ifdef APSTUDIO_INVOKED
  19. #define APSTUDIO_HIDDEN_SYMBOLS
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // MFC resource types (see Technical note TN024 for implementation details)
  23. #ifdef RC_INVOKED
  24. #define DLGINIT 240
  25. #else
  26. #define RT_DLGINIT MAKEINTRESOURCE(240)
  27. #endif
  28. #define WM_VBXINIT (WM_USER+0)
  29. /////////////////////////////////////////////////////////////////////////////
  30. #ifdef APSTUDIO_INVOKED
  31. #undef APSTUDIO_HIDDEN_SYMBOLS
  32. #endif
  33. /////////////////////////////////////////////////////////////////////////////
  34. // General style bits etc
  35. // Tab Control styles
  36. #ifndef TCS_MULTILINE // new in later versions of Win32
  37. #define TCS_MULTILINE 0x0200
  38. #endif
  39. // ControlBar styles
  40. #define CBRS_NOALIGN 0x00000000L
  41. #define CBRS_LEFT 0x00001400L // align on left, line on right
  42. #define CBRS_TOP 0x00002800L // align on top, line on bottom
  43. #define CBRS_RIGHT 0x00004100L // align on right, line on left
  44. #define CBRS_BOTTOM 0x00008200L // align on bottom, line on top
  45. /////////////////////////////////////////////////////////////////////////////
  46. // Standard window components
  47. // Mode indicators in status bar - these are routed like commands
  48. #define ID_INDICATOR_EXT 0xE700 // extended selection indicator
  49. #define ID_INDICATOR_CAPS 0xE701 // cap lock indicator
  50. #define ID_INDICATOR_NUM 0xE702 // num lock indicator
  51. #define ID_INDICATOR_SCRL 0xE703 // scroll lock indicator
  52. #define ID_INDICATOR_OVR 0xE704 // overtype mode indicator
  53. #define ID_INDICATOR_REC 0xE705 // record mode indicator
  54. #define ID_SEPARATOR 0 // special separator value
  55. #ifndef RC_INVOKED // code only
  56. // Standard control bars (IDW = window ID)
  57. #define AFX_IDW_CONTROLBAR_FIRST 0xE800
  58. #define AFX_IDW_CONTROLBAR_LAST 0xE8FF
  59. #define AFX_IDW_TOOLBAR 0xE800 // main Toolbar for window
  60. #define AFX_IDW_STATUS_BAR 0xE801 // Status bar window
  61. #define AFX_IDW_PREVIEW_BAR 0xE802 // PrintPreview Dialog Bar
  62. #define AFX_IDW_RESIZE_BAR 0xE803 // OLE in-place resize bar
  63. // Macro for mapping standard control bars to bitmask (limit of 32)
  64. #define AFX_CONTROLBAR_MASK(nIDC) (1L << (nIDC - AFX_IDW_CONTROLBAR_FIRST))
  65. // parts of Main Frame
  66. #define AFX_IDW_PANE_FIRST 0xE900 // first pane (256 max)
  67. #define AFX_IDW_PANE_LAST 0xE9ff
  68. #define AFX_IDW_HSCROLL_FIRST 0xEA00 // first Horz scrollbar (16 max)
  69. #define AFX_IDW_VSCROLL_FIRST 0xEA10 // first Vert scrollbar (16 max)
  70. #define AFX_IDW_SIZE_BOX 0xEA20 // size box for splitters
  71. #define AFX_IDW_PANE_SAVE 0xEA21 // to shift AFX_IDW_PANE_FIRST
  72. #endif //!RC_INVOKED
  73. #ifndef APSTUDIO_INVOKED
  74. // common style for form views
  75. #define AFX_WS_DEFAULT_VIEW (WS_CHILD | WS_VISIBLE | WS_BORDER)
  76. #endif
  77. /////////////////////////////////////////////////////////////////////////////
  78. // Standard app configurable strings
  79. // for application title (defaults to EXE name or name in constructor)
  80. #define AFX_IDS_APP_TITLE 0xE000
  81. // idle message bar line
  82. #define AFX_IDS_IDLEMESSAGE 0xE001
  83. // message bar line when in shift-F1 help mode
  84. #define AFX_IDS_HELPMODEMESSAGE 0xE002
  85. // application title when OLE 2.0 object is in-place active
  86. #define AFX_IDS_APP_TITLE_INPLACE 0xE003
  87. // document title when editing OLE 2.0 embedding
  88. #define AFX_IDS_APP_TITLE_EMBEDDING 0xE004
  89. // object name when server is inplace
  90. #define AFX_IDS_OBJ_TITLE_INPLACE 0xE006
  91. /////////////////////////////////////////////////////////////////////////////
  92. // Standard Commands
  93. // File commands
  94. #define ID_FILE_NEW 0xE100
  95. #define ID_FILE_OPEN 0xE101
  96. #define ID_FILE_CLOSE 0xE102
  97. #define ID_FILE_SAVE 0xE103
  98. #define ID_FILE_SAVE_AS 0xE104
  99. #define ID_FILE_PAGE_SETUP 0xE105
  100. #define ID_FILE_PRINT_SETUP 0xE106
  101. #define ID_FILE_PRINT 0xE107
  102. #define ID_FILE_PRINT_PREVIEW 0xE108
  103. #define ID_FILE_UPDATE 0xE109
  104. #define ID_FILE_SAVE_COPY_AS 0xE10A
  105. #define ID_FILE_SEND_MAIL 0xE10B
  106. #define ID_FILE_MRU_FILE1 0xE110 // range - 16 max
  107. #define ID_FILE_MRU_FILE2 0xE111
  108. #define ID_FILE_MRU_FILE3 0xE112
  109. #define ID_FILE_MRU_FILE4 0xE113
  110. // Edit commands
  111. #define ID_EDIT_CLEAR 0xE120
  112. #define ID_EDIT_CLEAR_ALL 0xE121
  113. #define ID_EDIT_COPY 0xE122
  114. #define ID_EDIT_CUT 0xE123
  115. #define ID_EDIT_FIND 0xE124
  116. #define ID_EDIT_PASTE 0xE125
  117. #define ID_EDIT_PASTE_LINK 0xE126
  118. #define ID_EDIT_PASTE_SPECIAL 0xE127
  119. #define ID_EDIT_REPEAT 0xE128
  120. #define ID_EDIT_REPLACE 0xE129
  121. #define ID_EDIT_SELECT_ALL 0xE12A
  122. #define ID_EDIT_UNDO 0xE12B
  123. #define ID_EDIT_REDO 0xE12C
  124. // Window commands
  125. #define ID_WINDOW_NEW 0xE130
  126. #define ID_WINDOW_ARRANGE 0xE131
  127. #define ID_WINDOW_CASCADE 0xE132
  128. #define ID_WINDOW_TILE_HORZ 0xE133
  129. #define ID_WINDOW_TILE_VERT 0xE134
  130. #define ID_WINDOW_SPLIT 0xE135
  131. #ifndef RC_INVOKED // code only
  132. #define AFX_IDM_WINDOW_FIRST 0xE130
  133. #define AFX_IDM_WINDOW_LAST 0xE13F
  134. #define AFX_IDM_FIRST_MDICHILD 0xFF00 // window list starts here
  135. #endif //!RC_INVOKED
  136. // Help and App commands
  137. #define ID_APP_ABOUT 0xE140
  138. #define ID_APP_EXIT 0xE141
  139. #define ID_HELP_INDEX 0xE142
  140. #define ID_HELP_USING 0xE143
  141. #define ID_CONTEXT_HELP 0xE144 // shift-F1
  142. // special commands for processing help
  143. #define ID_HELP 0xE145 // first attempt for F1
  144. #define ID_DEFAULT_HELP 0xE146 // last attempt
  145. // Misc
  146. #define ID_NEXT_PANE 0xE150
  147. #define ID_PREV_PANE 0xE151
  148. // OLE commands
  149. #define ID_OLE_INSERT_NEW 0xE200
  150. #define ID_OLE_EDIT_LINKS 0xE201
  151. #define ID_OLE_EDIT_CONVERT 0xE202
  152. #define ID_OLE_EDIT_CHANGE_ICON 0xE203
  153. #define ID_OLE_VERB_FIRST 0xE210 // range - 16 max
  154. #ifndef RC_INVOKED // code only
  155. #define ID_OLE_VERB_LAST 0xE21F
  156. #endif //!RC_INVOKED
  157. // for print preview dialog bar
  158. #define AFX_ID_PREVIEW_CLOSE 0xE300
  159. #define AFX_ID_PREVIEW_NUMPAGE 0xE301 // One/Two Page button
  160. #define AFX_ID_PREVIEW_NEXT 0xE302
  161. #define AFX_ID_PREVIEW_PREV 0xE303
  162. #define AFX_ID_PREVIEW_PRINT 0xE304
  163. #define AFX_ID_PREVIEW_ZOOMIN 0xE305
  164. #define AFX_ID_PREVIEW_ZOOMOUT 0xE306
  165. // View commands (same number used as IDW used for control bar)
  166. #define ID_VIEW_TOOLBAR 0xE800
  167. #define ID_VIEW_STATUS_BAR 0xE801
  168. // -> E8FF reserved for other control bar commands
  169. // RecordForm commands
  170. #define ID_RECORD_FIRST 0xE900
  171. #define ID_RECORD_LAST 0xE901
  172. #define ID_RECORD_NEXT 0xE902
  173. #define ID_RECORD_PREV 0xE903
  174. /////////////////////////////////////////////////////////////////////////////
  175. // Standard control IDs
  176. #define IDC_STATIC -1 // all static controls
  177. /////////////////////////////////////////////////////////////////////////////
  178. // Standard string error/warnings
  179. #ifndef RC_INVOKED // code only
  180. #define AFX_IDS_SCFIRST 0xEF00
  181. #endif //!RC_INVOKED
  182. #define AFX_IDS_SCSIZE 0xEF00
  183. #define AFX_IDS_SCMOVE 0xEF01
  184. #define AFX_IDS_SCMINIMIZE 0xEF02
  185. #define AFX_IDS_SCMAXIMIZE 0xEF03
  186. #define AFX_IDS_SCNEXTWINDOW 0xEF04
  187. #define AFX_IDS_SCPREVWINDOW 0xEF05
  188. #define AFX_IDS_SCCLOSE 0xEF06
  189. #define AFX_IDS_SCRESTORE 0xEF12
  190. #define AFX_IDS_SCTASKLIST 0xEF13
  191. #define AFX_IDS_MDICHILD 0xEF1F
  192. #define AFX_IDS_DESKACCESSORY 0xEFDA
  193. // General strings
  194. #define AFX_IDS_OPENFILE 0xF000
  195. #define AFX_IDS_SAVEFILE 0xF001
  196. #define AFX_IDS_ALLFILTER 0xF002
  197. #define AFX_IDS_UNTITLED 0xF003
  198. #define AFX_IDS_SAVEFILECOPY 0xF004
  199. #define AFX_IDS_PREVIEW_CLOSE 0xF005
  200. // Printing and print preview strings
  201. #define AFX_IDS_PRINTONPORT 0xF040
  202. #define AFX_IDS_ONEPAGE 0xF041
  203. #define AFX_IDS_TWOPAGE 0xF042
  204. #define AFX_IDS_PRINTPAGENUM 0xF043
  205. #define AFX_IDS_PREVIEWPAGEDESC 0xF044
  206. // OLE strings
  207. #define AFX_IDS_OBJECT_MENUITEM 0xF080
  208. #define AFX_IDS_EDIT_VERB 0xF081
  209. #define AFX_IDS_ACTIVATE_VERB 0xF082
  210. #define AFX_IDS_CHANGE_LINK 0xF083
  211. #define AFX_IDS_AUTO 0xF084
  212. #define AFX_IDS_MANUAL 0xF085
  213. #define AFX_IDS_FROZEN 0xF086
  214. #define AFX_IDS_ALL_FILES 0xF087
  215. // dynamically changing menu items
  216. #define AFX_IDS_SAVE_MENU 0xF088
  217. #define AFX_IDS_UPDATE_MENU 0xF089
  218. #define AFX_IDS_SAVE_AS_MENU 0xF08A
  219. #define AFX_IDS_SAVE_COPY_AS_MENU 0xF08B
  220. #define AFX_IDS_EXIT_MENU 0xF08C
  221. #define AFX_IDS_UPDATING_ITEMS 0xF08D
  222. // COlePasteSpecialDialog defines
  223. #define AFX_IDS_METAFILE_FORMAT 0xF08E
  224. #define AFX_IDS_DIB_FORMAT 0xF08F
  225. #define AFX_IDS_BITMAP_FORMAT 0xF090
  226. #define AFX_IDS_LINKSOURCE_FORMAT 0xF091
  227. #define AFX_IDS_EMBED_FORMAT 0xF092
  228. // General error / prompt strings
  229. #define AFX_IDP_INVALID_FILENAME 0xF100
  230. #define AFX_IDP_FAILED_TO_OPEN_DOC 0xF101
  231. #define AFX_IDP_FAILED_TO_SAVE_DOC 0xF102
  232. #define AFX_IDP_ASK_TO_SAVE 0xF103
  233. #define AFX_IDP_FAILED_TO_CREATE_DOC 0xF104
  234. #define AFX_IDP_FILE_TOO_LARGE 0xF105
  235. #define AFX_IDP_FAILED_TO_START_PRINT 0xF106
  236. #define AFX_IDP_FAILED_TO_LAUNCH_HELP 0xF107
  237. #define AFX_IDP_INTERNAL_FAILURE 0xF108 // general failure
  238. #define AFX_IDP_COMMAND_FAILURE 0xF109 // command failure
  239. #define AFX_IDP_FAILED_MEMORY_ALLOC 0xF10A
  240. #define AFX_IDP_VB2APICALLED 0xF10B
  241. // DDV parse errors
  242. #define AFX_IDP_PARSE_INT 0xF110
  243. #define AFX_IDP_PARSE_REAL 0xF111
  244. #define AFX_IDP_PARSE_INT_RANGE 0xF112
  245. #define AFX_IDP_PARSE_REAL_RANGE 0xF113
  246. #define AFX_IDP_PARSE_STRING_SIZE 0xF114
  247. #define AFX_IDP_PARSE_RADIO_BUTTON 0xF115
  248. // CFile/CArchive error strings for user failure
  249. #define AFX_IDP_FAILED_INVALID_FORMAT 0xF120
  250. #define AFX_IDP_FAILED_INVALID_PATH 0xF121
  251. #define AFX_IDP_FAILED_DISK_FULL 0xF122
  252. #define AFX_IDP_FAILED_ACCESS_READ 0xF123
  253. #define AFX_IDP_FAILED_ACCESS_WRITE 0xF124
  254. #define AFX_IDP_FAILED_IO_ERROR_READ 0xF125
  255. #define AFX_IDP_FAILED_IO_ERROR_WRITE 0xF126
  256. // OLE errors / prompt strings
  257. #define AFX_IDP_STATIC_OBJECT 0xF180
  258. #define AFX_IDP_FAILED_TO_CONNECT 0xF181
  259. #define AFX_IDP_SERVER_BUSY 0xF182
  260. #define AFX_IDP_BAD_VERB 0xF183
  261. #define AFX_IDP_FAILED_TO_NOTIFY 0xF185
  262. #define AFX_IDP_FAILED_TO_LAUNCH 0xF186
  263. #define AFX_IDP_ASK_TO_UPDATE 0xF187
  264. #define AFX_IDP_FAILED_TO_UPDATE 0xF188
  265. #define AFX_IDP_FAILED_TO_REGISTER 0xF189
  266. #define AFX_IDP_FAILED_TO_AUTO_REGISTER 0xF18A
  267. #define AFX_IDP_FAILED_TO_CONVERT 0xF18B
  268. #define AFX_IDP_GET_NOT_SUPPORTED 0xF18C
  269. #define AFX_IDP_SET_NOT_SUPPORTED 0xF18D
  270. #define AFX_IDP_ASK_TO_DISCARD 0xF18E
  271. // MAPI errors / prompt strings
  272. #define AFX_IDP_FAILED_MAPI_LOAD 0xF190
  273. #define AFX_IDP_INVALID_MAPI_DLL 0xF191
  274. #define AFX_IDP_FAILED_MAPI_SEND 0xF192
  275. // 0xf200-0xf20f reserved for use by VBX library code
  276. // Database errors / prompt strings
  277. #ifndef RC_INVOKED // code only
  278. #define AFX_IDP_SQL_FIRST 0xF280
  279. #endif //!RC_INVOKED
  280. #define AFX_IDP_SQL_CONNECT_FAIL 0xF281
  281. #define AFX_IDP_SQL_RECORDSET_FORWARD_ONLY 0xF282
  282. #define AFX_IDP_SQL_EMPTY_COLUMN_LIST 0xF283
  283. #define AFX_IDP_SQL_FIELD_SCHEMA_MISMATCH 0xF284
  284. #define AFX_IDP_SQL_ILLEGAL_MODE 0xF285
  285. #define AFX_IDP_SQL_MULTIPLE_ROWS_AFFECTED 0xF286
  286. #define AFX_IDP_SQL_NO_CURRENT_RECORD 0xF287
  287. #define AFX_IDP_SQL_NO_ROWS_AFFECTED 0xF288
  288. #define AFX_IDP_SQL_RECORDSET_READONLY 0xF289
  289. #define AFX_IDP_SQL_SQL_NO_TOTAL 0xF28A
  290. #define AFX_IDP_SQL_ODBC_LOAD_FAILED 0xF28B
  291. #define AFX_IDP_SQL_DYNASET_NOT_SUPPORTED 0xF28C
  292. #define AFX_IDP_SQL_SNAPSHOT_NOT_SUPPORTED 0xF28D
  293. #define AFX_IDP_SQL_API_CONFORMANCE 0xF28E
  294. #define AFX_IDP_SQL_SQL_CONFORMANCE 0xF28F
  295. #define AFX_IDP_SQL_NO_DATA_FOUND 0xF290
  296. #define AFX_IDP_SQL_ROW_UPDATE_NOT_SUPPORTED 0xF291
  297. #define AFX_IDP_SQL_ODBC_V2_REQUIRED 0xF292
  298. #define AFX_IDP_SQL_NO_POSITIONED_UPDATES 0xF293
  299. #define AFX_IDP_SQL_LOCK_MODE_NOT_SUPPORTED 0xF294
  300. #define AFX_IDP_SQL_DATA_TRUNCATED 0xF295
  301. /////////////////////////////////////////////////////////////////////////////
  302. // AFX implementation - control IDs (AFX_IDC)
  303. // Parts of dialogs
  304. #define AFX_IDC_LISTBOX 100
  305. #define AFX_IDC_CHANGE 101
  306. // for print dialog
  307. #define AFX_IDC_PRINT_DOCNAME 201
  308. #define AFX_IDC_PRINT_PRINTERNAME 202
  309. #define AFX_IDC_PRINT_PORTNAME 203
  310. #define AFX_IDC_PRINT_PAGENUM 204
  311. // Property Sheet control id's
  312. #define ID_APPLY_NOW 0xEA00
  313. #define AFX_IDC_TAB_CONTROL 301
  314. /////////////////////////////////////////////////////////////////////////////
  315. // IDRs for standard components
  316. // AFX standard ICON IDs (for MFC V1 apps)
  317. #define AFX_IDI_STD_MDIFRAME 1
  318. #define AFX_IDI_STD_FRAME 2
  319. #ifndef RC_INVOKED // code only
  320. // These are really COMMDLG dialogs, so there usually isn't a resource
  321. // for them, but these IDs are used as help IDs.
  322. #define AFX_IDD_FILEOPEN 28676
  323. #define AFX_IDD_FILESAVE 28677
  324. #define AFX_IDD_FONT 28678
  325. #define AFX_IDD_COLOR 28679
  326. #define AFX_IDD_PRINT 28680
  327. #define AFX_IDD_PRINTSETUP 28681
  328. #define AFX_IDD_FIND 28682
  329. #define AFX_IDD_REPLACE 28683
  330. #endif //!RC_INVOKED
  331. // Standard dialogs app should leave alone (0x7801->)
  332. #define AFX_IDD_NEWTYPEDLG 30721
  333. #define AFX_IDD_PRINTDLG 30722
  334. #define AFX_IDD_PREVIEW_TOOLBAR 30723
  335. // Dialogs defined for OLE2UI library
  336. #define AFX_IDD_INSERTOBJECT 30724
  337. #define AFX_IDD_CHANGEICON 30725
  338. #define AFX_IDD_CONVERT 30726
  339. #define AFX_IDD_PASTESPECIAL 30727
  340. #define AFX_IDD_EDITLINKS 30728
  341. #define AFX_IDD_FILEBROWSE 30729
  342. #define AFX_IDD_BUSY 30730
  343. // Standard cursors (0x7901->)
  344. // AFX_IDC = Cursor resources
  345. #define AFX_IDC_CONTEXTHELP 30977 // context sensitive help
  346. #define AFX_IDC_MAGNIFY 30978 // print preview zoom
  347. #define AFX_IDC_SMALLARROWS 30979 // splitter
  348. #define AFX_IDC_HSPLITBAR 30980 // splitter
  349. #define AFX_IDC_VSPLITBAR 30981 // splitter
  350. #define AFX_IDC_NODROPCRSR 30982 // No Drop Cursor
  351. #define AFX_IDC_TRACKNWSE 30983 // tracker
  352. #define AFX_IDC_TRACKNESW 30984 // tracker
  353. #define AFX_IDC_TRACKNS 30985 // tracker
  354. #define AFX_IDC_TRACKWE 30986 // tracker
  355. #define AFX_IDC_TRACK4WAY 30987 // tracker
  356. #define AFX_IDC_MOVE4WAY 30988 // resize bar (server only)
  357. // Tab Control bitmap IDs
  358. #define AFX_IDB_SCROLL 30989
  359. #define AFX_IDB_SCROLL_LEFT 30990
  360. #define AFX_IDB_SCROLL_RIGHT 30991
  361. #define AFX_IDB_SCROLL_LEFT_DIS 30992
  362. #define AFX_IDB_SCROLL_RIGHT_DIS 30993
  363. // Property Sheet control id's
  364. #define ID_APPLY_NOW 0xEA00
  365. // Property Sheet button strings
  366. #define AFX_IDS_PS_OK 0xF220
  367. #define AFX_IDS_PS_CANCEL 0xF221
  368. #define AFX_IDS_PS_APPLY_NOW 0xF222
  369. #define AFX_IDS_PS_HELP 0xF223
  370. #define AFX_IDS_PS_CLOSE 0xF224
  371. #ifdef _AFXCTL
  372. /////////////////////////////////////////////////////////////////////////////
  373. // AFX OLE control implementation - control IDs (AFX_IDC)
  374. // Font property page
  375. #define AFX_IDC_FONTPROP 1000
  376. #define AFX_IDC_FONTNAMES 1001
  377. #define AFX_IDC_FONTSTYLES 1002
  378. #define AFX_IDC_FONTSIZES 1003
  379. #define AFX_IDC_STRIKEOUT 1004
  380. #define AFX_IDC_UNDERLINE 1005
  381. #define AFX_IDC_SAMPLEBOX 1006
  382. // Color property page
  383. #define AFX_IDC_COLOR_BLACK 1100
  384. #define AFX_IDC_COLOR_WHITE 1101
  385. #define AFX_IDC_COLOR_RED 1102
  386. #define AFX_IDC_COLOR_GREEN 1103
  387. #define AFX_IDC_COLOR_BLUE 1104
  388. #define AFX_IDC_COLOR_YELLOW 1105
  389. #define AFX_IDC_COLOR_MAGENTA 1106
  390. #define AFX_IDC_COLOR_CYAN 1107
  391. #define AFX_IDC_COLOR_GRAY 1108
  392. #define AFX_IDC_COLOR_LIGHTGRAY 1109
  393. #define AFX_IDC_COLOR_DARKRED 1110
  394. #define AFX_IDC_COLOR_DARKGREEN 1111
  395. #define AFX_IDC_COLOR_DARKBLUE 1112
  396. #define AFX_IDC_COLOR_LIGHTBROWN 1113
  397. #define AFX_IDC_COLOR_DARKMAGENTA 1114
  398. #define AFX_IDC_COLOR_DARKCYAN 1115
  399. #define AFX_IDC_COLORPROP 1116
  400. #define AFX_IDC_SYSTEMCOLORS 1117
  401. // Picture porperty page
  402. #define AFX_IDC_PROPNAME 1201
  403. #define AFX_IDC_PICTURE 1202
  404. #define AFX_IDC_BROWSE 1203
  405. /////////////////////////////////////////////////////////////////////////////
  406. // IDRs for OLE control standard components
  407. // Standard propery page dialogs app should leave alone (0x7E01->)
  408. #define AFX_IDD_PROPPAGE_COLOR 32257
  409. #define AFX_IDD_PROPPAGE_FONT 32258
  410. #define AFX_IDD_PROPPAGE_PICTURE 32259
  411. #define AFX_IDB_TRUETYPE 32384
  412. // Tab Control bitmap IDs
  413. #define AFX_IDB_SCROLL 30989
  414. #define AFX_IDB_SCROLL_LEFT 30990
  415. #define AFX_IDB_SCROLL_RIGHT 30991
  416. #define AFX_IDB_SCROLL_LEFT_DIS 30992
  417. #define AFX_IDB_SCROLL_RIGHT_DIS 30993
  418. /////////////////////////////////////////////////////////////////////////////
  419. // Standard OLE control string error/warnings
  420. #define AFX_IDS_DEFAULT_PAGE_TITLE 0xFE00
  421. #define AFX_IDS_PROPPAGE_UNKNOWN 0xFE01
  422. #define AFX_IDS_FRAMECAPTIONFORMAT 0xFE02
  423. #define AFX_IDS_PROPERTIES 0xFE03
  424. #define AFX_IDS_COLOR_DESKTOP 0xFE04
  425. #define AFX_IDS_COLOR_APPWORKSPACE 0xFE05
  426. #define AFX_IDS_COLOR_WNDBACKGND 0xFE06
  427. #define AFX_IDS_COLOR_WNDTEXT 0xFE07
  428. #define AFX_IDS_COLOR_MENUBAR 0xFE08
  429. #define AFX_IDS_COLOR_MENUTEXT 0xFE09
  430. #define AFX_IDS_COLOR_ACTIVEBAR 0xFE0A
  431. #define AFX_IDS_COLOR_INACTIVEBAR 0xFE0B
  432. #define AFX_IDS_COLOR_ACTIVETEXT 0xFE0C
  433. #define AFX_IDS_COLOR_INACTIVETEXT 0xFE0D
  434. #define AFX_IDS_COLOR_ACTIVEBORDER 0xFE0E
  435. #define AFX_IDS_COLOR_INACTIVEBORDER 0xFE0F
  436. #define AFX_IDS_COLOR_WNDFRAME 0xFE10
  437. #define AFX_IDS_COLOR_SCROLLBARS 0xFE11
  438. #define AFX_IDS_COLOR_BTNFACE 0xFE12
  439. #define AFX_IDS_COLOR_BTNSHADOW 0xFE13
  440. #define AFX_IDS_COLOR_BTNTEXT 0xFE14
  441. #define AFX_IDS_COLOR_BTNHIGHLIGHT 0xFE15
  442. #define AFX_IDS_COLOR_DISABLEDTEXT 0xFE16
  443. #define AFX_IDS_COLOR_HIGHLIGHT 0xFE17
  444. #define AFX_IDS_COLOR_HIGHLIGHTTEXT 0xFE18
  445. #define AFX_IDS_REGULAR 0xFE19
  446. #define AFX_IDS_BOLD 0xFE1A
  447. #define AFX_IDS_ITALIC 0xFE1B
  448. #define AFX_IDS_BOLDITALIC 0xFE1C
  449. #define AFX_IDS_SAMPLETEXT 0xFE1D
  450. #define AFX_IDS_DISPLAYSTRING_FONT 0xFE1E
  451. #define AFX_IDS_DISPLAYSTRING_COLOR 0xFE1F
  452. #define AFX_IDS_DISPLAYSTRING_PICTURE 0xFE20
  453. #define AFX_IDS_PICTUREFILTER 0xFE21
  454. #define AFX_IDS_PICTYPE_UNKNOWN 0xFE22
  455. #define AFX_IDS_PICTYPE_NONE 0xFE23
  456. #define AFX_IDS_PICTYPE_BITMAP 0xFE24
  457. #define AFX_IDS_PICTYPE_METAFILE 0xFE25
  458. #define AFX_IDS_PICTYPE_ICON 0xFE26
  459. #define AFX_IDS_PROPFRAME 0xFE27
  460. #define AFX_IDS_COLOR_PPG 0xFE28
  461. #define AFX_IDS_COLOR_PPG_CAPTION 0xFE29
  462. #define AFX_IDS_FONT_PPG 0xFE2A
  463. #define AFX_IDS_FONT_PPG_CAPTION 0xFE2B
  464. #define AFX_IDS_PICTURE_PPG 0xFE2C
  465. #define AFX_IDS_PICTURE_PPG_CAPTION 0xFE2D
  466. #define AFX_IDS_STANDARD_FONT 0xFE2E
  467. #define AFX_IDS_STANDARD_PICTURE 0xFE2F
  468. #define AFX_IDS_PICTUREBROWSETITLE 0xFE30
  469. #define AFX_IDS_BORDERSTYLE_0 0xFE31
  470. #define AFX_IDS_BORDERSTYLE_1 0xFE32
  471. // OLE Control verb names
  472. #define AFX_IDS_VERB_EDIT 0xFE40
  473. #define AFX_IDS_VERB_PROPERTIES 0xFE41
  474. // OLE Control internal error messages
  475. #define AFX_IDP_PROPFRAME_OOM 0xFE80
  476. #define AFX_IDP_PROPFRAME_OOR 0xFE81
  477. #define AFX_IDP_PROPFRAME_NOPAGES 0xFE82
  478. #define AFX_IDP_PICTURECANTOPEN 0xFE83
  479. #define AFX_IDP_PICTURECANTLOAD 0xFE84
  480. #define AFX_IDP_PICTURETOOLARGE 0xFE85
  481. #define AFX_IDP_PICTUREREADFAILED 0xFE86
  482. // Standard OLE Control error strings
  483. #define AFX_IDP_E_ILLEGALFUNCTIONCALL 0xFEA0
  484. #define AFX_IDP_E_OVERFLOW 0xFEA1
  485. #define AFX_IDP_E_OUTOFMEMORY 0xFEA2
  486. #define AFX_IDP_E_DIVISIONBYZERO 0xFEA3
  487. #define AFX_IDP_E_OUTOFSTRINGSPACE 0xFEA4
  488. #define AFX_IDP_E_OUTOFSTACKSPACE 0xFEA5
  489. #define AFX_IDP_E_BADFILENAMEORNUMBER 0xFEA6
  490. #define AFX_IDP_E_FILENOTFOUND 0xFEA7
  491. #define AFX_IDP_E_BADFILEMODE 0xFEA8
  492. #define AFX_IDP_E_FILEALREADYOPEN 0xFEA9
  493. #define AFX_IDP_E_DEVICEIOERROR 0xFEAA
  494. #define AFX_IDP_E_FILEALREADYEXISTS 0xFEAB
  495. #define AFX_IDP_E_BADRECORDLENGTH 0xFEAC
  496. #define AFX_IDP_E_DISKFULL 0xFEAD
  497. #define AFX_IDP_E_BADRECORDNUMBER 0xFEAE
  498. #define AFX_IDP_E_BADFILENAME 0xFEAF
  499. #define AFX_IDP_E_TOOMANYFILES 0xFEB0
  500. #define AFX_IDP_E_DEVICEUNAVAILABLE 0xFEB1
  501. #define AFX_IDP_E_PERMISSIONDENIED 0xFEB2
  502. #define AFX_IDP_E_DISKNOTREADY 0xFEB3
  503. #define AFX_IDP_E_PATHFILEACCESSERROR 0xFEB4
  504. #define AFX_IDP_E_PATHNOTFOUND 0xFEB5
  505. #define AFX_IDP_E_INVALIDPATTERNSTRING 0xFEB6
  506. #define AFX_IDP_E_INVALIDUSEOFNULL 0xFEB7
  507. #define AFX_IDP_E_INVALIDFILEFORMAT 0xFEB8
  508. #define AFX_IDP_E_INVALIDPROPERTYVALUE 0xFEB9
  509. #define AFX_IDP_E_INVALIDPROPERTYARRAYINDEX 0xFEBA
  510. #define AFX_IDP_E_SETNOTSUPPORTEDATRUNTIME 0xFEBB
  511. #define AFX_IDP_E_SETNOTSUPPORTED 0xFEBC
  512. #define AFX_IDP_E_NEEDPROPERTYARRAYINDEX 0xFEBD
  513. #define AFX_IDP_E_SETNOTPERMITTED 0xFEBE
  514. #define AFX_IDP_E_GETNOTSUPPORTEDATRUNTIME 0xFEBF
  515. #define AFX_IDP_E_GETNOTSUPPORTED 0xFEC0
  516. #define AFX_IDP_E_PROPERTYNOTFOUND 0xFEC1
  517. #define AFX_IDP_E_INVALIDCLIPBOARDFORMAT 0xFEC2
  518. #define AFX_IDP_E_INVALIDPICTURE 0xFEC3
  519. #define AFX_IDP_E_PRINTERERROR 0xFEC4
  520. #define AFX_IDP_E_CANTSAVEFILETOTEMP 0xFEC5
  521. #define AFX_IDP_E_SEARCHTEXTNOTFOUND 0xFEC6
  522. #define AFX_IDP_E_REPLACEMENTSTOOLONG 0xFEC7
  523. #endif //_AFXCTL
  524. /////////////////////////////////////////////////////////////////////////////
  525. #endif //__AFXRES_H__