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

C / C++ / MFC

 
AnswerRe: form Displaying Pin
Zac Howland26-Jul-06 7:28
Zac Howland26-Jul-06 7:28 
AnswerRe: form Displaying Pin
Hamid_RT26-Jul-06 7:29
Hamid_RT26-Jul-06 7:29 
Questiondebug assertion failed Pin
identity_8526-Jul-06 5:42
identity_8526-Jul-06 5:42 
AnswerRe: debug assertion failed Pin
Hamid_RT26-Jul-06 6:05
Hamid_RT26-Jul-06 6:05 
AnswerRe: debug assertion failed Pin
Cedric Moonen26-Jul-06 6:05
Cedric Moonen26-Jul-06 6:05 
GeneralRe: debug assertion failed Pin
identity_8526-Jul-06 6:24
identity_8526-Jul-06 6:24 
GeneralRe: debug assertion failed Pin
Zac Howland26-Jul-06 6:35
Zac Howland26-Jul-06 6:35 
GeneralRe: debug assertion failed Pin
identity_8526-Jul-06 7:59
identity_8526-Jul-06 7:59 
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 
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
professional#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 
Smells like an stl issue.
You will get this type of message if you do something like this:
<br />
std::vector<long> vecLong;<br />
int n = vecLong.size();<br />


A lot of the stl classes returns a size_t numeric data type (instead of say, int, long etc).
Its not an error, but you should be aware of any overflow issues. If you are sure that your DWORD variable has enough range to accomodate the stl's size_t number, then just do a simple type cast.

<br />
std::vector<long> vecLong;<br />
int n = static_cast<int>(vecLong.size());<br />






I Dream of Absolute Zero

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.