Click here to Skip to main content
15,900,616 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: _variant_t to CString Pin
David Crow15-Sep-03 9:03
David Crow15-Sep-03 9:03 
GeneralRe: _variant_t to CString Pin
Binayak15-Sep-03 9:07
Binayak15-Sep-03 9:07 
GeneralRe: _variant_t to CString Pin
OBRon15-Sep-03 9:08
OBRon15-Sep-03 9:08 
GeneralRe: _variant_t to CString Pin
Michael Dunn15-Sep-03 17:07
sitebuilderMichael Dunn15-Sep-03 17:07 
GeneralNeed Help! Creating BITMAP from Scratch! Pin
colormyiris15-Sep-03 8:53
colormyiris15-Sep-03 8:53 
GeneralHave a look in my CSkinProgress... Pin
Kochise15-Sep-03 22:06
Kochise15-Sep-03 22:06 
GeneralIs NoStepInto Supported in VC7 Pin
OBRon15-Sep-03 8:38
OBRon15-Sep-03 8:38 
GeneralRe: Is NoStepInto Supported in VC7 Pin
geo_m15-Sep-03 22:01
geo_m15-Sep-03 22:01 
yes, it is, but it's moved to registry.
referring to same maillist:

We read the inclusion/exclusion list from the registry at
PRODUCT_ROOT\NativeDE\StepOver

Each string value in that RegKey should have a decimal number for its name
and a
value in the following format:

RegExp=[No]StepInto

Where RegExp is a regular expression per the standard Visual Studio
regular
expression format, with the following additional escapes:

\cid: A C/C++ identifier
\funct: A C/C++ function name
\scope: A set of class/namespace specifiers for a function (i.e.,
ATL::CFoo::CBar:Smile | :)
\anything: any string
\oper: a C/C++ operator

Due to an oversight, the items are evaluated in descending numeric
order instead of ascending order: the '20' rule will match before
'10'. The first matching rule is used. If no matching rule is
found, we step into. (i.e., there is an assumed entry of
MAX_INT \anything:=StepInto

examples:
---------

Don't step into members of CString[AWT], etc.:

1 \scope:CString.*\:\:.*=NoStepInto

Don't step into overloaded operators:

10 \scope:operator\oper:=NoStepInto

Don't step into ATL:: except for CComBSTR's non-operator members:

20 ATL\:\:CComBSTR::\funct:=StepInto
10 ATL\:\:.*=NoStepInfo

Don't step into templated things, unless they're merely templated
functions in a non-templated class:

20 \scope:\funct:=StepInto
10 .*[\<\>].*=NoStepInto


GeneralRe: Is NoStepInto Supported in VC7 Pin
OBRon16-Sep-03 3:46
OBRon16-Sep-03 3:46 
GeneralRe: Is NoStepInto Supported in VC7 Pin
geo_m16-Sep-03 5:35
geo_m16-Sep-03 5:35 
GeneralRe: Is NoStepInto Supported in VC7 Pin
OBRon16-Sep-03 7:04
OBRon16-Sep-03 7:04 
Generalset the initial size of a window Pin
Ruben93815-Sep-03 8:06
Ruben93815-Sep-03 8:06 
GeneralRe: set the initial size of a window Pin
valikac15-Sep-03 8:21
valikac15-Sep-03 8:21 
GeneralRe: set the initial size of a window Pin
Ruben93815-Sep-03 8:58
Ruben93815-Sep-03 8:58 
GeneralRe: set the initial size of a window Pin
Anonymous15-Sep-03 20:03
Anonymous15-Sep-03 20:03 
GeneralRe: set the initial size of a window Pin
valikac15-Sep-03 20:04
valikac15-Sep-03 20:04 
GeneralRe: set the initial size of a window Pin
David Crow15-Sep-03 9:05
David Crow15-Sep-03 9:05 
QuestionHow to restrict the mouse move out of my window? Pin
ICE_WIZARD15-Sep-03 7:12
ICE_WIZARD15-Sep-03 7:12 
AnswerRe: How to restrict the mouse move out of my window? Pin
valikac15-Sep-03 8:22
valikac15-Sep-03 8:22 
AnswerRe: How to restrict the mouse move out of my window? Pin
Rob Manderson15-Sep-03 10:58
protectorRob Manderson15-Sep-03 10:58 
GeneralRe: How to restrict the mouse move out of my window? Pin
Abin15-Sep-03 14:43
Abin15-Sep-03 14:43 
AnswerRe: How to restrict the mouse move out of my window? Pin
Michael Dunn15-Sep-03 17:11
sitebuilderMichael Dunn15-Sep-03 17:11 
AnswerRe: How to restrict the mouse move out of my window? Pin
Roger Allen16-Sep-03 1:49
Roger Allen16-Sep-03 1:49 
QuestionGet PocketPC's SD card size and free space from desktop through RAPI ? Pin
Kochise15-Sep-03 6:01
Kochise15-Sep-03 6:01 
GeneralDifferent Color values Pin
act_x15-Sep-03 5:23
act_x15-Sep-03 5:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.