Click here to Skip to main content
15,914,071 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralChanging Time Program Pin
woodman900015-Sep-03 13:09
woodman900015-Sep-03 13:09 
GeneralRe: Changing Time Program Pin
Terry O'Nolley15-Sep-03 15:34
Terry O'Nolley15-Sep-03 15:34 
QuestionAre there any "hard-wired" operators? Pin
markmalin15-Sep-03 10:45
markmalin15-Sep-03 10:45 
AnswerLogical operators *ARE* hard-wired ;) Pin
Kochise15-Sep-03 22:04
Kochise15-Sep-03 22:04 
GeneralRe: Logical operators *ARE* hard-wired ;) Pin
markmalin17-Sep-03 4:08
markmalin17-Sep-03 4:08 
General2 Classes are not communicating together Pin
xorsystem15-Sep-03 10:40
xorsystem15-Sep-03 10:40 
GeneralRe: 2 Classes are not communicating together Pin
Joaquín M López Muñoz15-Sep-03 12:02
Joaquín M López Muñoz15-Sep-03 12:02 
General_variant_t to CString Pin
Binayak15-Sep-03 8:57
Binayak15-Sep-03 8:57 
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 

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.