Main Page | Alphabetical List | Compound List | File List | Compound Members | File Members

Afxres.h

Go to the documentation of this file.
00001 // This is a part of the Microsoft Foundation Classes C++ library.
00002 // Copyright (C) 1992-1998 Microsoft Corporation
00003 // All rights reserved.
00004 //
00005 // This source code is only intended as a supplement to the
00006 // Microsoft Foundation Classes Reference and related
00007 // electronic documentation provided with the library.
00008 // See these sources for detailed information regarding the
00009 // Microsoft Foundation Classes product.
00010 
00011 #ifndef __AFXRES_H__
00012 #define __AFXRES_H__
00013 
00014 #ifdef RC_INVOKED
00015 #ifndef _INC_WINDOWS
00016 #define _INC_WINDOWS
00017 #include <winres.h>           // extract from windows header
00018 #endif
00019 #endif
00020 
00021 #ifdef _AFX_MINREBUILD
00022 #pragma component(minrebuild, off)
00023 #endif
00024 
00025 #ifdef APSTUDIO_INVOKED
00026 #define APSTUDIO_HIDDEN_SYMBOLS
00027 #endif
00028 
00030 // MFC resource types (see Technical note TN024 for implementation details)
00031 
00032 #ifndef RC_INVOKED
00033 #define RT_DLGINIT  MAKEINTRESOURCE(240)
00034 #define RT_TOOLBAR  MAKEINTRESOURCE(241)
00035 #endif
00036 
00038 
00039 #ifdef APSTUDIO_INVOKED
00040 #undef APSTUDIO_HIDDEN_SYMBOLS
00041 #endif
00042 
00044 // General style bits etc
00045 
00046 // ControlBar styles
00047 #define CBRS_ALIGN_LEFT     0x1000L
00048 #define CBRS_ALIGN_TOP      0x2000L
00049 #define CBRS_ALIGN_RIGHT    0x4000L
00050 #define CBRS_ALIGN_BOTTOM   0x8000L
00051 #define CBRS_ALIGN_ANY      0xF000L
00052 
00053 #define CBRS_BORDER_LEFT    0x0100L
00054 #define CBRS_BORDER_TOP     0x0200L
00055 #define CBRS_BORDER_RIGHT   0x0400L
00056 #define CBRS_BORDER_BOTTOM  0x0800L
00057 #define CBRS_BORDER_ANY     0x0F00L
00058 
00059 #define CBRS_TOOLTIPS       0x0010L
00060 #define CBRS_FLYBY          0x0020L
00061 #define CBRS_FLOAT_MULTI    0x0040L
00062 #define CBRS_BORDER_3D      0x0080L
00063 #define CBRS_HIDE_INPLACE   0x0008L
00064 #define CBRS_SIZE_DYNAMIC   0x0004L
00065 #define CBRS_SIZE_FIXED     0x0002L
00066 #define CBRS_FLOATING       0x0001L
00067 
00068 #define CBRS_GRIPPER        0x00400000L
00069 
00070 #define CBRS_ORIENT_HORZ    (CBRS_ALIGN_TOP|CBRS_ALIGN_BOTTOM)
00071 #define CBRS_ORIENT_VERT    (CBRS_ALIGN_LEFT|CBRS_ALIGN_RIGHT)
00072 #define CBRS_ORIENT_ANY     (CBRS_ORIENT_HORZ|CBRS_ORIENT_VERT)
00073 
00074 #define CBRS_ALL            0x0040FFFFL
00075 
00076 // the CBRS_ style is made up of an alignment style and a draw border style
00077 //  the alignment styles are mutually exclusive
00078 //  the draw border styles may be combined
00079 #define CBRS_NOALIGN        0x00000000L
00080 #define CBRS_LEFT           (CBRS_ALIGN_LEFT|CBRS_BORDER_RIGHT)
00081 #define CBRS_TOP            (CBRS_ALIGN_TOP|CBRS_BORDER_BOTTOM)
00082 #define CBRS_RIGHT          (CBRS_ALIGN_RIGHT|CBRS_BORDER_LEFT)
00083 #define CBRS_BOTTOM         (CBRS_ALIGN_BOTTOM|CBRS_BORDER_TOP)
00084 
00086 // Standard window components
00087 
00088 // Mode indicators in status bar - these are routed like commands
00089 #define ID_INDICATOR_EXT                0xE700  // extended selection indicator
00090 #define ID_INDICATOR_CAPS               0xE701  // cap lock indicator
00091 #define ID_INDICATOR_NUM                0xE702  // num lock indicator
00092 #define ID_INDICATOR_SCRL               0xE703  // scroll lock indicator
00093 #define ID_INDICATOR_OVR                0xE704  // overtype mode indicator
00094 #define ID_INDICATOR_REC                0xE705  // record mode indicator
00095 #define ID_INDICATOR_KANA               0xE706  // kana lock indicator
00096 
00097 #define ID_SEPARATOR                    0   // special separator value
00098 
00099 #ifndef RC_INVOKED  // code only
00100 // Standard control bars (IDW = window ID)
00101 #define AFX_IDW_CONTROLBAR_FIRST        0xE800
00102 #define AFX_IDW_CONTROLBAR_LAST         0xE8FF
00103 
00104 #define AFX_IDW_TOOLBAR                 0xE800  // main Toolbar for window
00105 #define AFX_IDW_STATUS_BAR              0xE801  // Status bar window
00106 #define AFX_IDW_PREVIEW_BAR             0xE802  // PrintPreview Dialog Bar
00107 #define AFX_IDW_RESIZE_BAR              0xE803  // OLE in-place resize bar
00108 #define AFX_IDW_REBAR                   0xE804  // COMCTL32 "rebar" Bar
00109 #define AFX_IDW_DIALOGBAR               0xE805  // CDialogBar
00110 
00111 // Note: If your application supports docking toolbars, you should
00112 //  not use the following IDs for your own toolbars.  The IDs chosen
00113 //  are at the top of the first 32 such that the bars will be hidden
00114 //  while in print preview mode, and are not likely to conflict with
00115 //  IDs your application may have used succesfully in the past.
00116 
00117 #define AFX_IDW_DOCKBAR_TOP             0xE81B
00118 #define AFX_IDW_DOCKBAR_LEFT            0xE81C
00119 #define AFX_IDW_DOCKBAR_RIGHT           0xE81D
00120 #define AFX_IDW_DOCKBAR_BOTTOM          0xE81E
00121 #define AFX_IDW_DOCKBAR_FLOAT           0xE81F
00122 
00123 // Macro for mapping standard control bars to bitmask (limit of 32)
00124 #define AFX_CONTROLBAR_MASK(nIDC)   (1L << (nIDC - AFX_IDW_CONTROLBAR_FIRST))
00125 
00126 // parts of Main Frame
00127 #define AFX_IDW_PANE_FIRST              0xE900  // first pane (256 max)
00128 #define AFX_IDW_PANE_LAST               0xE9ff
00129 #define AFX_IDW_HSCROLL_FIRST           0xEA00  // first Horz scrollbar (16 max)
00130 #define AFX_IDW_VSCROLL_FIRST           0xEA10  // first Vert scrollbar (16 max)
00131 
00132 #define AFX_IDW_SIZE_BOX                0xEA20  // size box for splitters
00133 #define AFX_IDW_PANE_SAVE               0xEA21  // to shift AFX_IDW_PANE_FIRST
00134 #endif 
00135 
00136 #ifndef APSTUDIO_INVOKED
00137 
00138 // common style for form views
00139 #define AFX_WS_DEFAULT_VIEW             (WS_CHILD | WS_VISIBLE | WS_BORDER)
00140 
00141 #endif 
00142 
00143 
00144 // Standard app configurable strings
00145 
00146 // for application title (defaults to EXE name or name in constructor)
00147 #define AFX_IDS_APP_TITLE               0xE000
00148 // idle message bar line
00149 #define AFX_IDS_IDLEMESSAGE             0xE001
00150 // message bar line when in shift-F1 help mode
00151 #define AFX_IDS_HELPMODEMESSAGE         0xE002
00152 // document title when editing OLE embedding
00153 #define AFX_IDS_APP_TITLE_EMBEDDING     0xE003
00154 // company name
00155 #define AFX_IDS_COMPANY_NAME            0xE004
00156 // object name when server is inplace
00157 #define AFX_IDS_OBJ_TITLE_INPLACE       0xE005
00158 
00160 // Standard Commands
00161 
00162 // File commands
00163 #define ID_FILE_NEW                     0xE100
00164 #define ID_FILE_OPEN                    0xE101
00165 #define ID_FILE_CLOSE                   0xE102
00166 #define ID_FILE_SAVE                    0xE103
00167 #define ID_FILE_SAVE_AS                 0xE104
00168 #define ID_FILE_PAGE_SETUP              0xE105
00169 #define ID_FILE_PRINT_SETUP             0xE106
00170 #define ID_FILE_PRINT                   0xE107
00171 #define ID_FILE_PRINT_DIRECT            0xE108
00172 #define ID_FILE_PRINT_PREVIEW           0xE109
00173 #define ID_FILE_UPDATE                  0xE10A
00174 #define ID_FILE_SAVE_COPY_AS            0xE10B
00175 #define ID_FILE_SEND_MAIL               0xE10C
00176 
00177 #define ID_FILE_MRU_FIRST               0xE110
00178 #define ID_FILE_MRU_FILE1               0xE110          // range - 16 max
00179 #define ID_FILE_MRU_FILE2               0xE111
00180 #define ID_FILE_MRU_FILE3               0xE112
00181 #define ID_FILE_MRU_FILE4               0xE113
00182 #define ID_FILE_MRU_FILE5               0xE114
00183 #define ID_FILE_MRU_FILE6               0xE115
00184 #define ID_FILE_MRU_FILE7               0xE116
00185 #define ID_FILE_MRU_FILE8               0xE117
00186 #define ID_FILE_MRU_FILE9               0xE118
00187 #define ID_FILE_MRU_FILE10              0xE119
00188 #define ID_FILE_MRU_FILE11              0xE11A
00189 #define ID_FILE_MRU_FILE12              0xE11B
00190 #define ID_FILE_MRU_FILE13              0xE11C
00191 #define ID_FILE_MRU_FILE14              0xE11D
00192 #define ID_FILE_MRU_FILE15              0xE11E
00193 #define ID_FILE_MRU_FILE16              0xE11F
00194 #define ID_FILE_MRU_LAST                0xE11F
00195 
00196 // Edit commands
00197 #define ID_EDIT_CLEAR                   0xE120
00198 #define ID_EDIT_CLEAR_ALL               0xE121
00199 #define ID_EDIT_COPY                    0xE122
00200 #define ID_EDIT_CUT                     0xE123
00201 #define ID_EDIT_FIND                    0xE124
00202 #define ID_EDIT_PASTE                   0xE125
00203 #define ID_EDIT_PASTE_LINK              0xE126
00204 #define ID_EDIT_PASTE_SPECIAL           0xE127
00205 #define ID_EDIT_REPEAT                  0xE128
00206 #define ID_EDIT_REPLACE                 0xE129
00207 #define ID_EDIT_SELECT_ALL              0xE12A
00208 #define ID_EDIT_UNDO                    0xE12B
00209 #define ID_EDIT_REDO                    0xE12C
00210 
00211 // Window commands
00212 #define ID_WINDOW_NEW                   0xE130
00213 #define ID_WINDOW_ARRANGE               0xE131
00214 #define ID_WINDOW_CASCADE               0xE132
00215 #define ID_WINDOW_TILE_HORZ             0xE133
00216 #define ID_WINDOW_TILE_VERT             0xE134
00217 #define ID_WINDOW_SPLIT                 0xE135
00218 #ifndef RC_INVOKED      // code only
00219 #define AFX_IDM_WINDOW_FIRST            0xE130
00220 #define AFX_IDM_WINDOW_LAST             0xE13F
00221 #define AFX_IDM_FIRST_MDICHILD          0xFF00  // window list starts here
00222 #endif 
00223 
00224 // Help and App commands
00225 #define ID_APP_ABOUT                    0xE140
00226 #define ID_APP_EXIT                     0xE141
00227 #define ID_HELP_INDEX                   0xE142
00228 #define ID_HELP_FINDER                  0xE143
00229 #define ID_HELP_USING                   0xE144
00230 #define ID_CONTEXT_HELP                 0xE145      // shift-F1
00231 // special commands for processing help
00232 #define ID_HELP                         0xE146      // first attempt for F1
00233 #define ID_DEFAULT_HELP                 0xE147      // last attempt
00234 
00235 // Misc
00236 #define ID_NEXT_PANE                    0xE150
00237 #define ID_PREV_PANE                    0xE151
00238 
00239 // Format
00240 #define ID_FORMAT_FONT                  0xE160
00241 
00242 // OLE commands
00243 #define ID_OLE_INSERT_NEW               0xE200
00244 #define ID_OLE_EDIT_LINKS               0xE201
00245 #define ID_OLE_EDIT_CONVERT             0xE202
00246 #define ID_OLE_EDIT_CHANGE_ICON         0xE203
00247 #define ID_OLE_EDIT_PROPERTIES          0xE204
00248 #define ID_OLE_VERB_FIRST               0xE210     // range - 16 max
00249 #ifndef RC_INVOKED      // code only
00250 #define ID_OLE_VERB_LAST                0xE21F
00251 #endif 
00252 
00253 // for print preview dialog bar
00254 #define AFX_ID_PREVIEW_CLOSE            0xE300
00255 #define AFX_ID_PREVIEW_NUMPAGE          0xE301      // One/Two Page button
00256 #define AFX_ID_PREVIEW_NEXT             0xE302
00257 #define AFX_ID_PREVIEW_PREV             0xE303
00258 #define AFX_ID_PREVIEW_PRINT            0xE304
00259 #define AFX_ID_PREVIEW_ZOOMIN           0xE305
00260 #define AFX_ID_PREVIEW_ZOOMOUT          0xE306
00261 
00262 // View commands (same number used as IDW used for control bar)
00263 #define ID_VIEW_TOOLBAR                 0xE800
00264 #define ID_VIEW_STATUS_BAR              0xE801
00265 #define ID_VIEW_REBAR                   0xE804
00266 #define ID_VIEW_AUTOARRANGE         0xE805
00267         // E810 -> E81F must be kept in order for RANGE macros
00268 #define ID_VIEW_SMALLICON               0xE810
00269 #define ID_VIEW_LARGEICON               0xE811
00270 #define ID_VIEW_LIST                   0xE812
00271 #define ID_VIEW_DETAILS                 0xE813
00272 #define ID_VIEW_LINEUP                  0xE814
00273 #define ID_VIEW_BYNAME                  0xE815
00274 #define AFX_ID_VIEW_MINIMUM              ID_VIEW_SMALLICON
00275 #define AFX_ID_VIEW_MAXIMUM              ID_VIEW_BYNAME
00276         // E800 -> E8FF reserved for other control bar commands
00277 
00278 // RecordForm commands
00279 #define ID_RECORD_FIRST                 0xE900
00280 #define ID_RECORD_LAST                  0xE901
00281 #define ID_RECORD_NEXT                  0xE902
00282 #define ID_RECORD_PREV                  0xE903
00283 
00285 // Standard control IDs
00286 
00287 #ifdef IDC_STATIC
00288 #undef IDC_STATIC
00289 #endif
00290 #define IDC_STATIC              (-1)     // all static controls
00291 
00293 // Standard string error/warnings
00294 
00295 #ifndef RC_INVOKED      // code only
00296 #define AFX_IDS_SCFIRST                 0xEF00
00297 #endif 
00298 
00299 #define AFX_IDS_SCSIZE                  0xEF00
00300 #define AFX_IDS_SCMOVE                  0xEF01
00301 #define AFX_IDS_SCMINIMIZE              0xEF02
00302 #define AFX_IDS_SCMAXIMIZE              0xEF03
00303 #define AFX_IDS_SCNEXTWINDOW            0xEF04
00304 #define AFX_IDS_SCPREVWINDOW            0xEF05
00305 #define AFX_IDS_SCCLOSE                 0xEF06
00306 #define AFX_IDS_SCRESTORE               0xEF12
00307 #define AFX_IDS_SCTASKLIST              0xEF13
00308 
00309 #define AFX_IDS_MDICHILD                0xEF1F
00310 
00311 #define AFX_IDS_DESKACCESSORY           0xEFDA
00312 
00313 // General strings
00314 #define AFX_IDS_OPENFILE                0xF000
00315 #define AFX_IDS_SAVEFILE                0xF001
00316 #define AFX_IDS_ALLFILTER               0xF002
00317 #define AFX_IDS_UNTITLED                0xF003
00318 #define AFX_IDS_SAVEFILECOPY            0xF004
00319 #define AFX_IDS_PREVIEW_CLOSE           0xF005
00320 #define AFX_IDS_UNNAMED_FILE            0xF006
00321 #define AFX_IDS_HIDE                    0xF011
00322 
00323 // MFC Standard Exception Error messages
00324 #define AFX_IDP_NO_ERROR_AVAILABLE      0xF020
00325 #define AFX_IDS_NOT_SUPPORTED_EXCEPTION 0xF021
00326 #define AFX_IDS_RESOURCE_EXCEPTION      0xF022
00327 #define AFX_IDS_MEMORY_EXCEPTION        0xF023
00328 #define AFX_IDS_USER_EXCEPTION          0xF024
00329 
00330 // Printing and print preview strings
00331 #define AFX_IDS_PRINTONPORT             0xF040
00332 #define AFX_IDS_ONEPAGE                 0xF041
00333 #define AFX_IDS_TWOPAGE                 0xF042
00334 #define AFX_IDS_PRINTPAGENUM            0xF043
00335 #define AFX_IDS_PREVIEWPAGEDESC         0xF044
00336 #define AFX_IDS_PRINTDEFAULTEXT         0xF045
00337 #define AFX_IDS_PRINTDEFAULT            0xF046
00338 #define AFX_IDS_PRINTFILTER             0xF047
00339 #define AFX_IDS_PRINTCAPTION            0xF048
00340 #define AFX_IDS_PRINTTOFILE             0xF049
00341 
00342 
00343 // OLE strings
00344 #define AFX_IDS_OBJECT_MENUITEM         0xF080
00345 #define AFX_IDS_EDIT_VERB               0xF081
00346 #define AFX_IDS_ACTIVATE_VERB           0xF082
00347 #define AFX_IDS_CHANGE_LINK             0xF083
00348 #define AFX_IDS_AUTO                    0xF084
00349 #define AFX_IDS_MANUAL                  0xF085
00350 #define AFX_IDS_FROZEN                  0xF086
00351 #define AFX_IDS_ALL_FILES               0xF087
00352 // dynamically changing menu items
00353 #define AFX_IDS_SAVE_MENU               0xF088
00354 #define AFX_IDS_UPDATE_MENU             0xF089
00355 #define AFX_IDS_SAVE_AS_MENU            0xF08A
00356 #define AFX_IDS_SAVE_COPY_AS_MENU       0xF08B
00357 #define AFX_IDS_EXIT_MENU               0xF08C
00358 #define AFX_IDS_UPDATING_ITEMS          0xF08D
00359 // COlePasteSpecialDialog defines
00360 #define AFX_IDS_METAFILE_FORMAT         0xF08E
00361 #define AFX_IDS_DIB_FORMAT              0xF08F
00362 #define AFX_IDS_BITMAP_FORMAT           0xF090
00363 #define AFX_IDS_LINKSOURCE_FORMAT       0xF091
00364 #define AFX_IDS_EMBED_FORMAT            0xF092
00365 // other OLE utility strings
00366 #define AFX_IDS_PASTELINKEDTYPE         0xF094
00367 #define AFX_IDS_UNKNOWNTYPE             0xF095
00368 #define AFX_IDS_RTF_FORMAT              0xF096
00369 #define AFX_IDS_TEXT_FORMAT             0xF097
00370 // OLE datatype format error strings
00371 #define AFX_IDS_INVALID_CURRENCY        0xF098
00372 #define AFX_IDS_INVALID_DATETIME        0xF099
00373 #define AFX_IDS_INVALID_DATETIMESPAN    0xF09A
00374 
00375 // General error / prompt strings
00376 #define AFX_IDP_INVALID_FILENAME        0xF100
00377 #define AFX_IDP_FAILED_TO_OPEN_DOC      0xF101
00378 #define AFX_IDP_FAILED_TO_SAVE_DOC      0xF102
00379 #define AFX_IDP_ASK_TO_SAVE             0xF103
00380 #define AFX_IDP_FAILED_TO_CREATE_DOC    0xF104
00381 #define AFX_IDP_FILE_TOO_LARGE          0xF105
00382 #define AFX_IDP_FAILED_TO_START_PRINT   0xF106
00383 #define AFX_IDP_FAILED_TO_LAUNCH_HELP   0xF107
00384 #define AFX_IDP_INTERNAL_FAILURE        0xF108      // general failure
00385 #define AFX_IDP_COMMAND_FAILURE         0xF109      // command failure
00386 #define AFX_IDP_FAILED_MEMORY_ALLOC     0xF10A
00387 #define AFX_IDP_UNREG_DONE              0xF10B
00388 #define AFX_IDP_UNREG_FAILURE           0xF10C
00389 #define AFX_IDP_DLL_LOAD_FAILED         0xF10D
00390 #define AFX_IDP_DLL_BAD_VERSION         0xF10E
00391 
00392 // DDV parse errors
00393 #define AFX_IDP_PARSE_INT               0xF110
00394 #define AFX_IDP_PARSE_REAL              0xF111
00395 #define AFX_IDP_PARSE_INT_RANGE         0xF112
00396 #define AFX_IDP_PARSE_REAL_RANGE        0xF113
00397 #define AFX_IDP_PARSE_STRING_SIZE       0xF114
00398 #define AFX_IDP_PARSE_RADIO_BUTTON      0xF115
00399 #define AFX_IDP_PARSE_BYTE              0xF116
00400 #define AFX_IDP_PARSE_UINT              0xF117
00401 #define AFX_IDP_PARSE_DATETIME          0xF118
00402 #define AFX_IDP_PARSE_CURRENCY          0xF119
00403 
00404 // CFile/CArchive error strings for user failure
00405 #define AFX_IDP_FAILED_INVALID_FORMAT   0xF120
00406 #define AFX_IDP_FAILED_INVALID_PATH     0xF121
00407 #define AFX_IDP_FAILED_DISK_FULL        0xF122
00408 #define AFX_IDP_FAILED_ACCESS_READ      0xF123
00409 #define AFX_IDP_FAILED_ACCESS_WRITE     0xF124
00410 #define AFX_IDP_FAILED_IO_ERROR_READ    0xF125
00411 #define AFX_IDP_FAILED_IO_ERROR_WRITE   0xF126
00412 
00413 // OLE errors / prompt strings
00414 #define AFX_IDP_STATIC_OBJECT           0xF180
00415 #define AFX_IDP_FAILED_TO_CONNECT       0xF181
00416 #define AFX_IDP_SERVER_BUSY             0xF182
00417 #define AFX_IDP_BAD_VERB                0xF183
00418 #define AFX_IDS_NOT_DOCOBJECT                0xF184
00419 #define AFX_IDP_FAILED_TO_NOTIFY        0xF185
00420 #define AFX_IDP_FAILED_TO_LAUNCH        0xF186
00421 #define AFX_IDP_ASK_TO_UPDATE           0xF187
00422 #define AFX_IDP_FAILED_TO_UPDATE        0xF188
00423 #define AFX_IDP_FAILED_TO_REGISTER      0xF189
00424 #define AFX_IDP_FAILED_TO_AUTO_REGISTER 0xF18A
00425 #define AFX_IDP_FAILED_TO_CONVERT       0xF18B
00426 #define AFX_IDP_GET_NOT_SUPPORTED       0xF18C
00427 #define AFX_IDP_SET_NOT_SUPPORTED       0xF18D
00428 #define AFX_IDP_ASK_TO_DISCARD          0xF18E
00429 #define AFX_IDP_FAILED_TO_CREATE        0xF18F
00430 
00431 // MAPI errors / prompt strings
00432 #define AFX_IDP_FAILED_MAPI_LOAD        0xF190
00433 #define AFX_IDP_INVALID_MAPI_DLL        0xF191
00434 #define AFX_IDP_FAILED_MAPI_SEND        0xF192
00435 
00436 #define AFX_IDP_FILE_NONE               0xF1A0
00437 #define AFX_IDP_FILE_GENERIC            0xF1A1
00438 #define AFX_IDP_FILE_NOT_FOUND          0xF1A2
00439 #define AFX_IDP_FILE_BAD_PATH           0xF1A3
00440 #define AFX_IDP_FILE_TOO_MANY_OPEN      0xF1A4
00441 #define AFX_IDP_FILE_ACCESS_DENIED      0xF1A5
00442 #define AFX_IDP_FILE_INVALID_FILE       0xF1A6
00443 #define AFX_IDP_FILE_REMOVE_CURRENT     0xF1A7
00444 #define AFX_IDP_FILE_DIR_FULL           0xF1A8
00445 #define AFX_IDP_FILE_BAD_SEEK           0xF1A9
00446 #define AFX_IDP_FILE_HARD_IO            0xF1AA
00447 #define AFX_IDP_FILE_SHARING            0xF1AB
00448 #define AFX_IDP_FILE_LOCKING            0xF1AC
00449 #define AFX_IDP_FILE_DISKFULL           0xF1AD
00450 #define AFX_IDP_FILE_EOF                0xF1AE
00451 
00452 #define AFX_IDP_ARCH_NONE               0xF1B0
00453 #define AFX_IDP_ARCH_GENERIC            0xF1B1
00454 #define AFX_IDP_ARCH_READONLY           0xF1B2
00455 #define AFX_IDP_ARCH_ENDOFFILE          0xF1B3
00456 #define AFX_IDP_ARCH_WRITEONLY          0xF1B4
00457 #define AFX_IDP_ARCH_BADINDEX           0xF1B5
00458 #define AFX_IDP_ARCH_BADCLASS           0xF1B6
00459 #define AFX_IDP_ARCH_BADSCHEMA          0xF1B7
00460 
00461 #define AFX_IDS_OCC_SCALEUNITS_PIXELS   0xF1C0
00462 
00463 // 0xf200-0xf20f reserved
00464 
00465 // font names and point sizes
00466 #define AFX_IDS_STATUS_FONT             0xF230
00467 #define AFX_IDS_TOOLTIP_FONT            0xF231
00468 #define AFX_IDS_UNICODE_FONT            0xF232
00469 #define AFX_IDS_MINI_FONT               0xF233
00470 
00471 // ODBC Database errors / prompt strings
00472 #ifndef RC_INVOKED      // code only
00473 #define AFX_IDP_SQL_FIRST                       0xF280
00474 #endif 
00475 #define AFX_IDP_SQL_CONNECT_FAIL                0xF281
00476 #define AFX_IDP_SQL_RECORDSET_FORWARD_ONLY      0xF282
00477 #define AFX_IDP_SQL_EMPTY_COLUMN_LIST           0xF283
00478 #define AFX_IDP_SQL_FIELD_SCHEMA_MISMATCH       0xF284
00479 #define AFX_IDP_SQL_ILLEGAL_MODE                0xF285
00480 #define AFX_IDP_SQL_MULTIPLE_ROWS_AFFECTED      0xF286
00481 #define AFX_IDP_SQL_NO_CURRENT_RECORD           0xF287
00482 #define AFX_IDP_SQL_NO_ROWS_AFFECTED            0xF288
00483 #define AFX_IDP_SQL_RECORDSET_READONLY          0xF289
00484 #define AFX_IDP_SQL_SQL_NO_TOTAL                0xF28A
00485 #define AFX_IDP_SQL_ODBC_LOAD_FAILED            0xF28B
00486 #define AFX_IDP_SQL_DYNASET_NOT_SUPPORTED       0xF28C
00487 #define AFX_IDP_SQL_SNAPSHOT_NOT_SUPPORTED      0xF28D
00488 #define AFX_IDP_SQL_API_CONFORMANCE             0xF28E
00489 #define AFX_IDP_SQL_SQL_CONFORMANCE             0xF28F
00490 #define AFX_IDP_SQL_NO_DATA_FOUND               0xF290
00491 #define AFX_IDP_SQL_ROW_UPDATE_NOT_SUPPORTED    0xF291
00492 #define AFX_IDP_SQL_ODBC_V2_REQUIRED            0xF292
00493 #define AFX_IDP_SQL_NO_POSITIONED_UPDATES       0xF293
00494 #define AFX_IDP_SQL_LOCK_MODE_NOT_SUPPORTED     0xF294
00495 #define AFX_IDP_SQL_DATA_TRUNCATED              0xF295
00496 #define AFX_IDP_SQL_ROW_FETCH                   0xF296
00497 #define AFX_IDP_SQL_INCORRECT_ODBC              0xF297
00498 #define AFX_IDP_SQL_UPDATE_DELETE_FAILED        0xF298
00499 #define AFX_IDP_SQL_DYNAMIC_CURSOR_NOT_SUPPORTED    0xF299
00500 #define AFX_IDP_SQL_FIELD_NOT_FOUND             0xF29A
00501 #define AFX_IDP_SQL_BOOKMARKS_NOT_SUPPORTED     0xF29B
00502 #define AFX_IDP_SQL_BOOKMARKS_NOT_ENABLED       0xF29C
00503 
00504 // ODBC Database strings
00505 #define AFX_IDS_DELETED                         0xF29D
00506 
00507 // DAO Database errors / prompt strings
00508 #ifndef RC_INVOKED      // code only
00509 #define AFX_IDP_DAO_FIRST                       0xF2B0
00510 #endif 
00511 #define AFX_IDP_DAO_ENGINE_INITIALIZATION       0xF2B0
00512 #define AFX_IDP_DAO_DFX_BIND                    0xF2B1
00513 #define AFX_IDP_DAO_OBJECT_NOT_OPEN             0xF2B2
00514 
00515 // ICDAORecordset::GetRows Errors
00516 //  These are not placed in DAO Errors collection
00517 //  and must be handled directly by MFC.
00518 #define AFX_IDP_DAO_ROWTOOSHORT                 0xF2B3
00519 #define AFX_IDP_DAO_BADBINDINFO                 0xF2B4
00520 #define AFX_IDP_DAO_COLUMNUNAVAILABLE           0xF2B5
00521 
00523 // Strings for ISAPI support
00524 
00525 #define AFX_IDS_HTTP_TITLE              0xF2D1
00526 #define AFX_IDS_HTTP_NO_TEXT            0xF2D2
00527 #define AFX_IDS_HTTP_BAD_REQUEST        0xF2D3
00528 #define AFX_IDS_HTTP_AUTH_REQUIRED      0xF2D4
00529 #define AFX_IDS_HTTP_FORBIDDEN          0xF2D5
00530 #define AFX_IDS_HTTP_NOT_FOUND          0xF2D6
00531 #define AFX_IDS_HTTP_SERVER_ERROR       0xF2D7
00532 #define AFX_IDS_HTTP_NOT_IMPLEMENTED    0xF2D8
00533 
00535 // AFX implementation - control IDs (AFX_IDC)
00536 
00537 // Parts of dialogs
00538 #define AFX_IDC_LISTBOX                 100
00539 #define AFX_IDC_CHANGE                  101
00540 
00541 // for print dialog
00542 #define AFX_IDC_PRINT_DOCNAME           201
00543 #define AFX_IDC_PRINT_PRINTERNAME       202
00544 #define AFX_IDC_PRINT_PORTNAME          203
00545 #define AFX_IDC_PRINT_PAGENUM           204
00546 
00547 // Property Sheet control id's (determined with Spy++)
00548 #define ID_APPLY_NOW                    0x3021
00549 #define ID_WIZBACK                      0x3023
00550 #define ID_WIZNEXT                      0x3024
00551 #define ID_WIZFINISH                    0x3025
00552 #define AFX_IDC_TAB_CONTROL             0x3020
00553 
00555 // IDRs for standard components
00556 
00557 #ifndef RC_INVOKED  // code only
00558 // These are really COMMDLG dialogs, so there usually isn't a resource
00559 // for them, but these IDs are used as help IDs.
00560 #define AFX_IDD_FILEOPEN                28676
00561 #define AFX_IDD_FILESAVE                28677
00562 #define AFX_IDD_FONT                    28678
00563 #define AFX_IDD_COLOR                   28679
00564 #define AFX_IDD_PRINT                   28680
00565 #define AFX_IDD_PRINTSETUP              28681
00566 #define AFX_IDD_FIND                    28682
00567 #define AFX_IDD_REPLACE                 28683
00568 #endif 
00569 
00570 // Standard dialogs app should leave alone (0x7801->)
00571 #define AFX_IDD_NEWTYPEDLG              30721
00572 #define AFX_IDD_PRINTDLG                30722
00573 #define AFX_IDD_PREVIEW_TOOLBAR         30723
00574 
00575 // Dialogs defined for OLE2UI library
00576 #define AFX_IDD_INSERTOBJECT            30724
00577 #define AFX_IDD_CHANGEICON              30725
00578 #define AFX_IDD_CONVERT                 30726
00579 #define AFX_IDD_PASTESPECIAL            30727
00580 #define AFX_IDD_EDITLINKS               30728
00581 #define AFX_IDD_FILEBROWSE              30729
00582 #define AFX_IDD_BUSY                    30730
00583 
00584 #define AFX_IDD_OBJECTPROPERTIES        30732
00585 #define AFX_IDD_CHANGESOURCE            30733
00586 
00587 // Standard cursors (0x7901->)
00588         // AFX_IDC = Cursor resources
00589 #define AFX_IDC_CONTEXTHELP             30977       // context sensitive help
00590 #define AFX_IDC_MAGNIFY                 30978       // print preview zoom
00591 #define AFX_IDC_SMALLARROWS             30979       // splitter
00592 #define AFX_IDC_HSPLITBAR               30980       // splitter
00593 #define AFX_IDC_VSPLITBAR               30981       // splitter
00594 #define AFX_IDC_NODROPCRSR              30982       // No Drop Cursor
00595 #define AFX_IDC_TRACKNWSE               30983       // tracker
00596 #define AFX_IDC_TRACKNESW               30984       // tracker
00597 #define AFX_IDC_TRACKNS                 30985       // tracker
00598 #define AFX_IDC_TRACKWE                 30986       // tracker
00599 #define AFX_IDC_TRACK4WAY               30987       // tracker
00600 #define AFX_IDC_MOVE4WAY                30988       // resize bar (server only)
00601 
00602 // Mini frame window bitmap ID
00603 #define AFX_IDB_MINIFRAME_MENU          30994
00604 
00605 // CheckListBox checks bitmap ID
00606 #define AFX_IDB_CHECKLISTBOX_NT         30995
00607 #define AFX_IDB_CHECKLISTBOX_95         30996
00608 
00609 // AFX standard accelerator resources
00610 #define AFX_IDR_PREVIEW_ACCEL           30997
00611 
00612 // AFX standard ICON IDs (for MFC V1 apps) (0x7A01->)
00613 #define AFX_IDI_STD_MDIFRAME            31233
00614 #define AFX_IDI_STD_FRAME               31234
00615 
00617 // AFX OLE control implementation - control IDs (AFX_IDC)
00618 
00619 // Font property page
00620 #define AFX_IDC_FONTPROP                1000
00621 #define AFX_IDC_FONTNAMES               1001
00622 #define AFX_IDC_FONTSTYLES              1002
00623 #define AFX_IDC_FONTSIZES               1003
00624 #define AFX_IDC_STRIKEOUT               1004
00625 #define AFX_IDC_UNDERLINE               1005
00626 #define AFX_IDC_SAMPLEBOX               1006
00627 
00628 // Color property page
00629 #define AFX_IDC_COLOR_BLACK             1100
00630 #define AFX_IDC_COLOR_WHITE             1101
00631 #define AFX_IDC_COLOR_RED               1102
00632 #define AFX_IDC_COLOR_GREEN             1103
00633 #define AFX_IDC_COLOR_BLUE              1104
00634 #define AFX_IDC_COLOR_YELLOW            1105
00635 #define AFX_IDC_COLOR_MAGENTA           1106
00636 #define AFX_IDC_COLOR_CYAN              1107
00637 #define AFX_IDC_COLOR_GRAY              1108
00638 #define AFX_IDC_COLOR_LIGHTGRAY         1109
00639 #define AFX_IDC_COLOR_DARKRED           1110
00640 #define AFX_IDC_COLOR_DARKGREEN         1111
00641 #define AFX_IDC_COLOR_DARKBLUE          1112
00642 #define AFX_IDC_COLOR_LIGHTBROWN        1113
00643 #define AFX_IDC_COLOR_DARKMAGENTA       1114
00644 #define AFX_IDC_COLOR_DARKCYAN          1115
00645 #define AFX_IDC_COLORPROP               1116
00646 #define AFX_IDC_SYSTEMCOLORS            1117
00647 
00648 // Picture porperty page
00649 #define AFX_IDC_PROPNAME                1201
00650 #define AFX_IDC_PICTURE                 1202
00651 #define AFX_IDC_BROWSE                  1203
00652 #define AFX_IDC_CLEAR                   1204
00653 
00655 // IDRs for OLE control standard components
00656 
00657 // Standard propery page dialogs app should leave alone (0x7E01->)
00658 #define AFX_IDD_PROPPAGE_COLOR         32257
00659 #define AFX_IDD_PROPPAGE_FONT          32258
00660 #define AFX_IDD_PROPPAGE_PICTURE       32259
00661 
00662 #define AFX_IDB_TRUETYPE               32384
00663 
00665 // Standard OLE control strings
00666 
00667 // OLE Control page strings
00668 #define AFX_IDS_PROPPAGE_UNKNOWN        0xFE01
00669 #define AFX_IDS_COLOR_DESKTOP           0xFE04
00670 #define AFX_IDS_COLOR_APPWORKSPACE      0xFE05
00671 #define AFX_IDS_COLOR_WNDBACKGND        0xFE06
00672 #define AFX_IDS_COLOR_WNDTEXT           0xFE07
00673 #define AFX_IDS_COLOR_MENUBAR           0xFE08
00674 #define AFX_IDS_COLOR_MENUTEXT          0xFE09
00675 #define AFX_IDS_COLOR_ACTIVEBAR         0xFE0A
00676 #define AFX_IDS_COLOR_INACTIVEBAR       0xFE0B
00677 #define AFX_IDS_COLOR_ACTIVETEXT        0xFE0C
00678 #define AFX_IDS_COLOR_INACTIVETEXT      0xFE0D
00679 #define AFX_IDS_COLOR_ACTIVEBORDER      0xFE0E
00680 #define AFX_IDS_COLOR_INACTIVEBORDER    0xFE0F
00681 #define AFX_IDS_COLOR_WNDFRAME          0xFE10
00682 #define AFX_IDS_COLOR_SCROLLBARS        0xFE11
00683 #define AFX_IDS_COLOR_BTNFACE           0xFE12
00684 #define AFX_IDS_COLOR_BTNSHADOW         0xFE13
00685 #define AFX_IDS_COLOR_BTNTEXT           0xFE14
00686 #define AFX_IDS_COLOR_BTNHIGHLIGHT      0xFE15
00687 #define AFX_IDS_COLOR_DISABLEDTEXT      0xFE16
00688 #define AFX_IDS_COLOR_HIGHLIGHT         0xFE17
00689 #define AFX_IDS_COLOR_HIGHLIGHTTEXT     0xFE18
00690 #define AFX_IDS_REGULAR                 0xFE19
00691 #define AFX_IDS_BOLD                    0xFE1A
00692 #define AFX_IDS_ITALIC                  0xFE1B
00693 #define AFX_IDS_BOLDITALIC              0xFE1C
00694 #define AFX_IDS_SAMPLETEXT              0xFE1D
00695 #define AFX_IDS_DISPLAYSTRING_FONT      0xFE1E
00696 #define AFX_IDS_DISPLAYSTRING_COLOR     0xFE1F
00697 #define AFX_IDS_DISPLAYSTRING_PICTURE   0xFE20
00698 #define AFX_IDS_PICTUREFILTER           0xFE21
00699 #define AFX_IDS_PICTYPE_UNKNOWN         0xFE22
00700 #define AFX_IDS_PICTYPE_NONE            0xFE23
00701 #define AFX_IDS_PICTYPE_BITMAP          0xFE24
00702 #define AFX_IDS_PICTYPE_METAFILE        0xFE25
00703 #define AFX_IDS_PICTYPE_ICON            0xFE26
00704 #define AFX_IDS_COLOR_PPG               0xFE28
00705 #define AFX_IDS_COLOR_PPG_CAPTION       0xFE29
00706 #define AFX_IDS_FONT_PPG                0xFE2A
00707 #define AFX_IDS_FONT_PPG_CAPTION        0xFE2B
00708 #define AFX_IDS_PICTURE_PPG             0xFE2C
00709 #define AFX_IDS_PICTURE_PPG_CAPTION     0xFE2D
00710 #define AFX_IDS_PICTUREBROWSETITLE      0xFE30
00711 #define AFX_IDS_BORDERSTYLE_0           0xFE31
00712 #define AFX_IDS_BORDERSTYLE_1           0xFE32
00713 
00714 // OLE Control verb names
00715 #define AFX_IDS_VERB_EDIT               0xFE40
00716 #define AFX_IDS_VERB_PROPERTIES         0xFE41
00717 
00718 // OLE Control internal error messages
00719 #define AFX_IDP_PICTURECANTOPEN         0xFE83
00720 #define AFX_IDP_PICTURECANTLOAD         0xFE84
00721 #define AFX_IDP_PICTURETOOLARGE         0xFE85
00722 #define AFX_IDP_PICTUREREADFAILED       0xFE86
00723 
00724 // Standard OLE Control error strings
00725 #define AFX_IDP_E_ILLEGALFUNCTIONCALL       0xFEA0
00726 #define AFX_IDP_E_OVERFLOW                  0xFEA1
00727 #define AFX_IDP_E_OUTOFMEMORY               0xFEA2
00728 #define AFX_IDP_E_DIVISIONBYZERO            0xFEA3
00729 #define AFX_IDP_E_OUTOFSTRINGSPACE          0xFEA4
00730 #define AFX_IDP_E_OUTOFSTACKSPACE           0xFEA5
00731 #define AFX_IDP_E_BADFILENAMEORNUMBER       0xFEA6
00732 #define AFX_IDP_E_FILENOTFOUND              0xFEA7
00733 #define AFX_IDP_E_BADFILEMODE               0xFEA8
00734 #define AFX_IDP_E_FILEALREADYOPEN           0xFEA9
00735 #define AFX_IDP_E_DEVICEIOERROR             0xFEAA
00736 #define AFX_IDP_E_FILEALREADYEXISTS         0xFEAB
00737 #define AFX_IDP_E_BADRECORDLENGTH           0xFEAC
00738 #define AFX_IDP_E_DISKFULL                  0xFEAD
00739 #define AFX_IDP_E_BADRECORDNUMBER           0xFEAE
00740 #define AFX_IDP_E_BADFILENAME               0xFEAF
00741 #define AFX_IDP_E_TOOMANYFILES              0xFEB0
00742 #define AFX_IDP_E_DEVICEUNAVAILABLE         0xFEB1
00743 #define AFX_IDP_E_PERMISSIONDENIED          0xFEB2
00744 #define AFX_IDP_E_DISKNOTREADY              0xFEB3
00745 #define AFX_IDP_E_PATHFILEACCESSERROR       0xFEB4
00746 #define AFX_IDP_E_PATHNOTFOUND              0xFEB5
00747 #define AFX_IDP_E_INVALIDPATTERNSTRING      0xFEB6
00748 #define AFX_IDP_E_INVALIDUSEOFNULL          0xFEB7
00749 #define AFX_IDP_E_INVALIDFILEFORMAT         0xFEB8
00750 #define AFX_IDP_E_INVALIDPROPERTYVALUE      0xFEB9
00751 #define AFX_IDP_E_INVALIDPROPERTYARRAYINDEX 0xFEBA
00752 #define AFX_IDP_E_SETNOTSUPPORTEDATRUNTIME  0xFEBB
00753 #define AFX_IDP_E_SETNOTSUPPORTED           0xFEBC
00754 #define AFX_IDP_E_NEEDPROPERTYARRAYINDEX    0xFEBD
00755 #define AFX_IDP_E_SETNOTPERMITTED           0xFEBE
00756 #define AFX_IDP_E_GETNOTSUPPORTEDATRUNTIME  0xFEBF
00757 #define AFX_IDP_E_GETNOTSUPPORTED           0xFEC0
00758 #define AFX_IDP_E_PROPERTYNOTFOUND          0xFEC1
00759 #define AFX_IDP_E_INVALIDCLIPBOARDFORMAT    0xFEC2
00760 #define AFX_IDP_E_INVALIDPICTURE            0xFEC3
00761 #define AFX_IDP_E_PRINTERERROR              0xFEC4
00762 #define AFX_IDP_E_CANTSAVEFILETOTEMP        0xFEC5
00763 #define AFX_IDP_E_SEARCHTEXTNOTFOUND        0xFEC6
00764 #define AFX_IDP_E_REPLACEMENTSTOOLONG       0xFEC7
00765 
00767 
00768 #ifdef _AFX_MINREBUILD
00769 #pragma component(minrebuild, on)
00770 #endif
00771 
00772 #endif //__AFXRES_H__
00773 

Generated on Tue Sep 30 12:35:15 2003 for GTestAndEngine by doxygen 1.3.2