Click here to Skip to main content
15,890,973 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: debug assertion failed Pin
David Crow26-Jul-06 8:23
David Crow26-Jul-06 8:23 
GeneralRe: debug assertion failed Pin
Zac Howland26-Jul-06 9:02
Zac Howland26-Jul-06 9:02 
GeneralRe: debug assertion failed Pin
David Crow26-Jul-06 9:10
David Crow26-Jul-06 9:10 
GeneralRe: debug assertion failed Pin
identity_8526-Jul-06 9:39
identity_8526-Jul-06 9:39 
QuestionRe: debug assertion failed Pin
David Crow26-Jul-06 9:54
David Crow26-Jul-06 9:54 
AnswerRe: debug assertion failed Pin
Zac Howland26-Jul-06 10:26
Zac Howland26-Jul-06 10:26 
GeneralRe: debug assertion failed Pin
David Crow26-Jul-06 10:56
David Crow26-Jul-06 10:56 
QuestionDebugger problems with run-time information Pin
adamshuv26-Jul-06 5:13
adamshuv26-Jul-06 5:13 
Hi,
I'm trying to debug my code, and each time I run into a dynamically-linked function-call, the debugger cannot step-into the function, and does not stop at breakpoints inside it.
e.g.

class ISender {
public:
virtual void Send() = 0;
};

class XSender : public ISender {
...
virtual void Send();
};

ISender *m_sender = new XSender;

m_sender->Send()

Instead, it suggests that it shows the disassembly, as if it cannot find the matching code. I've tried that, and I still can't go inside these functions.
Static calls to functions of the same class work properly, e.g.
ISender m_sender = new XSender;

In addition, The debugger does not show the value of the object in the monitor, unless I specifically cast it to the run-time type of the object, i.e.:
(XSender *)m_sender

I suspect that thesse problems are related but I'm not sure.

Any ideasConfused | :confused: Thanks.

while (i == live) {
have(fun);
}

AnswerRe: Debugger problems with run-time information Pin
Matt Godbolt26-Jul-06 6:08
Matt Godbolt26-Jul-06 6:08 
QuestionCreate a bitmap [modified] Pin
#realJSOP26-Jul-06 5:04
mve#realJSOP26-Jul-06 5:04 
AnswerRe: Create a bitmap Pin
Zac Howland26-Jul-06 5:40
Zac Howland26-Jul-06 5:40 
AnswerRe: Create a bitmap Pin
valikac26-Jul-06 6:47
valikac26-Jul-06 6:47 
QuestionTwo Documents in an Application Pin
narayanagvs26-Jul-06 4:55
narayanagvs26-Jul-06 4:55 
AnswerRe: Two Documents in an Application Pin
led mike26-Jul-06 5:46
led mike26-Jul-06 5:46 
AnswerRe: Two Documents in an Application Pin
BlitzPackage26-Jul-06 7:36
BlitzPackage26-Jul-06 7:36 
QuestionStrange error i cannot fathom Pin
eeyor66626-Jul-06 4:33
eeyor66626-Jul-06 4:33 
AnswerRe: Strange error i cannot fathom Pin
RChin26-Jul-06 4:46
RChin26-Jul-06 4:46 
AnswerRe: Strange error i cannot fathom Pin
David Crow26-Jul-06 4:48
David Crow26-Jul-06 4:48 
AnswerRe: Strange error i cannot fathom [modified] Pin
toxcct26-Jul-06 5:02
toxcct26-Jul-06 5:02 
GeneralRe: Strange error i cannot fathom Pin
Zac Howland26-Jul-06 5:06
Zac Howland26-Jul-06 5:06 
GeneralRe: Strange error i cannot fathom Pin
toxcct26-Jul-06 5:09
toxcct26-Jul-06 5:09 
AnswerRe: Strange error i cannot fathom Pin
Zac Howland26-Jul-06 5:03
Zac Howland26-Jul-06 5:03 
Questionconversion Pin
RockyJames26-Jul-06 4:32
RockyJames26-Jul-06 4:32 
AnswerRe: conversion Pin
David Crow26-Jul-06 4:45
David Crow26-Jul-06 4:45 
GeneralRe: conversion Pin
RockyJames26-Jul-06 4:53
RockyJames26-Jul-06 4:53 

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.