Click here to Skip to main content
15,909,193 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Step through in VC++ Pin
Software_Specialist9-May-07 13:09
Software_Specialist9-May-07 13:09 
GeneralRe: Step through in VC++ Pin
Mark Salsbery9-May-07 13:25
Mark Salsbery9-May-07 13:25 
GeneralRe: Step through in VC++ Pin
Software_Specialist9-May-07 14:31
Software_Specialist9-May-07 14:31 
QuestionRe: Step through in VC++ Pin
Mark Salsbery9-May-07 14:54
Mark Salsbery9-May-07 14:54 
AnswerRe: Step through in VC++ Pin
Software_Specialist10-May-07 1:17
Software_Specialist10-May-07 1:17 
GeneralRe: Step through in VC++ Pin
Software_Specialist10-May-07 1:38
Software_Specialist10-May-07 1:38 
GeneralRe: Step through in VC++ Pin
Mark Salsbery10-May-07 4:50
Mark Salsbery10-May-07 4:50 
GeneralRe: Step through in VC++ Pin
Mark Salsbery10-May-07 4:45
Mark Salsbery10-May-07 4:45 
Software_Specialist wrote:
Yeh i placed break pt over switch(uMsg) and when cursor stops at dis pt then next jump it takes to return False


That's because you'll get alot of messages in your DialogProc that you haven't handled in your
switch statement. A breakpoint there will stop on every message - there will be alot of them.
If you want to catch WM_INITDIALOG, then put a breakpoint at the code after "case WM_INITDIALOG:".

Software_Specialist wrote:
"There is no source code available for the current location."


That's not an error. That means you are trying to step into code that doesn't have debug info
available to match up source code with machine code. In that case you can only step in via
the disassembly window.

There's nothing strange going on. You need breakpoints in YOUR code Smile | :)

Mark


"Posting a VB.NET question in the C++ forum will end in tears." Chris Maunder

GeneralRe: Step through in VC++ Pin
Nelek13-May-07 19:56
protectorNelek13-May-07 19:56 
QuestionRe: Error in plex.cpp, line 44 Pin
mla1549-May-07 9:35
mla1549-May-07 9:35 
AnswerRe: Error in plex.cpp, line 44 Pin
Stephen Hewitt9-May-07 14:25
Stephen Hewitt9-May-07 14:25 
AnswerRe: Error in plex.cpp, line 44 Pin
BadKarma9-May-07 22:12
BadKarma9-May-07 22:12 
AnswerRe: Error in plex.cpp, line 44 Pin
mla15411-May-07 5:25
mla15411-May-07 5:25 
QuestionFD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za9-May-07 9:20
od@ananzi.co.za9-May-07 9:20 
QuestionRe: FD_ACCEPT event very slow (sometimes) Pin
Mark Salsbery9-May-07 10:24
Mark Salsbery9-May-07 10:24 
AnswerRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za9-May-07 20:48
od@ananzi.co.za9-May-07 20:48 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
Mark Salsbery10-May-07 5:00
Mark Salsbery10-May-07 5:00 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za11-May-07 1:27
od@ananzi.co.za11-May-07 1:27 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
Mark Salsbery11-May-07 4:18
Mark Salsbery11-May-07 4:18 
AnswerRe: FD_ACCEPT event very slow (sometimes) Pin
Moak13-May-07 12:41
Moak13-May-07 12:41 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za17-May-07 5:15
od@ananzi.co.za17-May-07 5:15 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
Moak17-May-07 5:21
Moak17-May-07 5:21 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za22-May-07 4:39
od@ananzi.co.za22-May-07 4:39 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
Moak25-May-07 2:53
Moak25-May-07 2:53 
GeneralRe: FD_ACCEPT event very slow (sometimes) Pin
od@ananzi.co.za21-Jun-07 2:42
od@ananzi.co.za21-Jun-07 2:42 

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.