Click here to Skip to main content
15,891,136 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Winsock Programming Pin
Steven M Hunt1-Dec-02 14:17
Steven M Hunt1-Dec-02 14:17 
GeneralExtracting attachments from email Pin
AlexMarbus30-Nov-02 13:42
AlexMarbus30-Nov-02 13:42 
GeneralRe: Extracting attachments from email Pin
Ravi Bhavnani30-Nov-02 14:42
professionalRavi Bhavnani30-Nov-02 14:42 
GeneralRe: Extracting attachments from email Pin
AlexMarbus30-Nov-02 14:48
AlexMarbus30-Nov-02 14:48 
GeneralRe: Extracting attachments from email Pin
Rohit  Sinha30-Nov-02 18:45
Rohit  Sinha30-Nov-02 18:45 
GeneralRe: Extracting attachments from email Pin
AlexMarbus6-Dec-02 12:48
AlexMarbus6-Dec-02 12:48 
GeneralMFC program crashes under Win XP Pin
Romik30-Nov-02 12:52
Romik30-Nov-02 12:52 
GeneralRe: MFC program crashes under Win XP Pin
Gary R. Wheeler1-Dec-02 6:27
Gary R. Wheeler1-Dec-02 6:27 
As a rule, you need to provide more detail when you post questions. What statement does it crash on? Does it always crash in the same place?

Given that the debug version 'works fine' but the release version does not, I would guess that you have one or more uninitialized variables. Under debug, things tend to get set to a known state (usually zero) for you. Under release, that doesn't happen, and you get whatever garbage was in the variable when it was created or allocated. The reason things work under Win98 but don't under WinXP is that WinXP does a better job of validating parameters and such. You are getting away with this under Win98 simply because it's not checking something that WinXP does.


Software Zen: delete this;
GeneralRe: MFC program crashes under Win XP Pin
Romik1-Dec-02 7:00
Romik1-Dec-02 7:00 
GeneralPrinting JPEG in Visual C++ Pin
gaumi30-Nov-02 12:21
gaumi30-Nov-02 12:21 
GeneralRe: Printing JPEG in Visual C++ Pin
Christian Graus30-Nov-02 12:47
protectorChristian Graus30-Nov-02 12:47 
General.txt-File Pin
Lucky200230-Nov-02 11:56
Lucky200230-Nov-02 11:56 
GeneralRe: .txt-File Pin
PJ Arends30-Nov-02 12:11
professionalPJ Arends30-Nov-02 12:11 
GeneralRe: .txt-File Pin
Lucky200230-Nov-02 12:23
Lucky200230-Nov-02 12:23 
GeneralRe: .txt-File Pin
PJ Arends30-Nov-02 14:46
professionalPJ Arends30-Nov-02 14:46 
GeneralRe: .txt-File Pin
Lucky20021-Dec-02 12:11
Lucky20021-Dec-02 12:11 
GeneralRe: .txt-File Pin
Christian Graus30-Nov-02 12:44
protectorChristian Graus30-Nov-02 12:44 
GeneralRe: .txt-File Pin
Lucky200230-Nov-02 13:02
Lucky200230-Nov-02 13:02 
GeneralRe: .txt-File Pin
Christian Graus30-Nov-02 13:08
protectorChristian Graus30-Nov-02 13:08 
GeneralRe: .txt-File Pin
Lucky200230-Nov-02 13:18
Lucky200230-Nov-02 13:18 
GeneralRe: .txt-File Pin
Nick Parker30-Nov-02 18:28
protectorNick Parker30-Nov-02 18:28 
GeneralRe: .txt-File Pin
Christian Graus30-Nov-02 21:50
protectorChristian Graus30-Nov-02 21:50 
GeneralRe: .txt-File Pin
Nick Parker1-Dec-02 1:38
protectorNick Parker1-Dec-02 1:38 
GeneralRe: .txt-File Pin
Christian Graus1-Dec-02 2:33
protectorChristian Graus1-Dec-02 2:33 
GeneralRe: .txt-File Pin
Lucky20021-Dec-02 12:13
Lucky20021-Dec-02 12:13 

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.