Click here to Skip to main content
15,887,856 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to fetch data from other computer using socket in VC++ Pin
Stephen Hewitt9-Jan-06 22:03
Stephen Hewitt9-Jan-06 22:03 
AnswerRe: How to fetch data from other computer using socket in VC++ Pin
ThatsAlok9-Jan-06 22:40
ThatsAlok9-Jan-06 22:40 
QuestionTroubleshooting R6025 Runtime error message Pin
ledallam9-Jan-06 20:30
ledallam9-Jan-06 20:30 
AnswerRe: Troubleshooting R6025 Runtime error message Pin
kakan9-Jan-06 20:33
professionalkakan9-Jan-06 20:33 
AnswerRe: Troubleshooting R6025 Runtime error message Pin
Stephen Hewitt9-Jan-06 21:07
Stephen Hewitt9-Jan-06 21:07 
GeneralRe: Troubleshooting R6025 Runtime error message Pin
ledallam10-Jan-06 19:37
ledallam10-Jan-06 19:37 
GeneralRe: Troubleshooting R6025 Runtime error message Pin
ledallam10-Jan-06 19:40
ledallam10-Jan-06 19:40 
GeneralRe: Troubleshooting R6025 Runtime error message Pin
Stephen Hewitt10-Jan-06 19:57
Stephen Hewitt10-Jan-06 19:57 
Building a release build with debug info will not alter the way the application behaves. To turn on debug info for the release build follow these steps (VC6):
- Select the release configuration as the active config.
- Project settings, "C/C++" tab, "General" category: Select "Program Database" in the "Debug Info" combo.
- "Link" tab, "Debug" category: Tick "Debug info", "Microsoft format" & "Separate types".
- Rebuild.

If your workspace contains multiple projects follow the same steps for each one. Run the application in the debugger (still the release build however) and reproduce the problem. When the error dialog appears break in and look at the call stack. You may have to hunt for the correct thread.

Because optimizations are enabled your debugger will "lie" to you from time to time (when some optimization trips it up) so beware.

I actually always follow these steps for release builds. Having the .PDB files has many benefits such as simplifying postmortem analysis with crash dump files. In a production environment you should have a symbol server on the build machine and the .PDB files get added to the symbol server as part of the build process.

Steve

GeneralRe: Troubleshooting R6025 Runtime error message Pin
ledallam12-Jan-06 19:06
ledallam12-Jan-06 19:06 
QuestionDirectX Books Pin
rajeev829-Jan-06 20:09
rajeev829-Jan-06 20:09 
QuestionDoc /View example with serialization Pin
vikas amin9-Jan-06 19:25
vikas amin9-Jan-06 19:25 
AnswerRe: Doc /View example with serialization Pin
Rage9-Jan-06 21:29
professionalRage9-Jan-06 21:29 
GeneralRe: Doc /View example with serialization Pin
vikas amin9-Jan-06 22:44
vikas amin9-Jan-06 22:44 
GeneralRe: Doc /View example with serialization Pin
Ravi Bhavnani10-Jan-06 7:38
professionalRavi Bhavnani10-Jan-06 7:38 
QuestionHow to get a pointer of a specific child frame window in a MDI application if I have open more child frame windows? Pin
sude9-Jan-06 18:58
sude9-Jan-06 18:58 
AnswerRe: How to get a pointer of a specific child frame window in a MDI application if I have open more child frame windows? Pin
Rage9-Jan-06 21:34
professionalRage9-Jan-06 21:34 
QuestionMFC: Reposition a button after main window is redrawn Pin
elapid9-Jan-06 17:25
elapid9-Jan-06 17:25 
AnswerRe: MFC: Reposition a button after main window is redrawn Pin
Prakash Nadar9-Jan-06 18:49
Prakash Nadar9-Jan-06 18:49 
AnswerRe: MFC: Reposition a button after main window is redrawn Pin
ddmcr9-Jan-06 20:35
ddmcr9-Jan-06 20:35 
QuestionSECDialogBar settings are written into ini file Pin
nkshastry20009-Jan-06 16:00
nkshastry20009-Jan-06 16:00 
QuestionWinHelp2000 Pin
GayathriNaveen9-Jan-06 15:52
GayathriNaveen9-Jan-06 15:52 
AnswerRe: WinHelp2000 Pin
Blake Miller10-Jan-06 6:49
Blake Miller10-Jan-06 6:49 
GeneralRe: WinHelp2000 Pin
GayathriNaveen10-Jan-06 16:28
GayathriNaveen10-Jan-06 16:28 
GeneralRe: WinHelp2000 Pin
Blake Miller11-Jan-06 4:46
Blake Miller11-Jan-06 4:46 
QuestionSecurely distributing .pdb files Pin
dogby9-Jan-06 14:02
dogby9-Jan-06 14:02 

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.