Click here to Skip to main content
15,892,746 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: try-catch dynamic memory cleanup Pin
not_in_use5-Aug-08 8:33
not_in_use5-Aug-08 8:33 
GeneralRe: try-catch dynamic memory cleanup Pin
x87Bliss5-Aug-08 11:25
x87Bliss5-Aug-08 11:25 
GeneralRe: try-catch dynamic memory cleanup Pin
not_in_use5-Aug-08 12:07
not_in_use5-Aug-08 12:07 
AnswerRe: try-catch dynamic memory cleanup Pin
Stephen Hewitt5-Aug-08 14:05
Stephen Hewitt5-Aug-08 14:05 
QuestionHow to install MyApp.exe from custom actions in setup and deployment type project in VS2005 Pin
kapardhi4-Aug-08 20:09
kapardhi4-Aug-08 20:09 
AnswerRe: How to install MyApp.exe from custom actions in setup and deployment type project in VS2005 Pin
_AnsHUMAN_ 4-Aug-08 20:26
_AnsHUMAN_ 4-Aug-08 20:26 
AnswerRe: How to install MyApp.exe from custom actions in setup and deployment type project in VS2005 Pin
KarstenK4-Aug-08 21:19
mveKarstenK4-Aug-08 21:19 
QuestionHow to set Debug Info option in vc++6.0 for command line build? Pin
Super Hornet4-Aug-08 19:48
Super Hornet4-Aug-08 19:48 
We are building our system which has hundred's of workspaces for which debug info is not set manually so now for debugging release binaries we are building through batch file which has following script

Set ReBuild_Required=

if /I "%1"=="clean" GOTO CLEAN
if /I "%1"=="clean_only" GOTO CLEAN_ONLY

Set Config=%1
if /I "%Config%"=="" Set Config=Release

GOTO BUILD

:CLEAN_ONLY
Set ReBuild_Required=/CLEAN
GOTO CLEAN_REMAINING

:CLEAN

Set ReBuild_Required=/REBUILD

:CLEAN_REMAINING

Set Config=%2
if /I "%Config%"=="" Set Config=Release

del /Q ..\..\Include\*.*
del /Q ..\..\..\Common\Include\*.*

if /I %Config%==Release GOTO CLEAN_RELEASE

del /Q ..\..\Bin\Debug\*.*
del /Q ..\..\..\Common\Bin\Debug\*.*

del /Q ..\..\Lib\*Dbg.Lib
del /Q ..\..\..\Common\Lib\*Dbg.Lib

GOTO BUILD

:CLEAN_RELEASE

del /Q ..\..\Bin\Release\*.*
del /Q ..\..\..\Common\Bin\Release\*.*

ren ..\..\Lib\*Dbg.Lib *Dbg.Tlf
del /Q ..\..\Lib\*.Lib
ren ..\..\Lib\*.Tlf *.Lib

ren ..\..\..\Common\Lib\*Dbg.Lib *Dbg.Tlf
del /Q ..\..\..\Common\Lib\*.Lib
ren ..\..\..\Common\Lib\*.Tlf *.Lib

:BUILD

Set Proj_Dir=..\..\..\Common\Source\Database

Set Proj_Name=DBRecall
MSDEV /USEENV %Proj_Dir%\%Proj_Name%\%Proj_Name%.dsp 	/MAKE "%Proj_Name% - Win32 %Config%" %ReBuild_Required%
if %ERRORLEVEL% GEQ 1 GOTO end



In the above script what changes I need to do inorder to generate debug info??
QuestionRe: How to set Debug Info option in vc++6.0 for command line build? Pin
Super Hornet4-Aug-08 21:25
Super Hornet4-Aug-08 21:25 
QuestionHow to change Regional Settings(API)? Pin
ritz12344-Aug-08 19:36
ritz12344-Aug-08 19:36 
Questioncreate data base in vc++6 Pin
ani_ikram4-Aug-08 18:27
ani_ikram4-Aug-08 18:27 
AnswerRe: create data base in vc++6 Pin
_AnsHUMAN_ 4-Aug-08 20:00
_AnsHUMAN_ 4-Aug-08 20:00 
GeneralRe: create data base in vc++6 Pin
ani_ikram4-Aug-08 20:56
ani_ikram4-Aug-08 20:56 
GeneralRe: create data base in vc++6 Pin
_AnsHUMAN_ 4-Aug-08 21:46
_AnsHUMAN_ 4-Aug-08 21:46 
QuestionAn exception occurred while trying to run "Shell32.dll,Control_RunDLL ConnectorCpl.cpl Pin
monsieur_jj4-Aug-08 17:23
monsieur_jj4-Aug-08 17:23 
QuestionLINK : fatal error LNK1104: Pin
ani_ikram4-Aug-08 17:23
ani_ikram4-Aug-08 17:23 
AnswerRe: LINK : fatal error LNK1104: Pin
sudhir_Kumar4-Aug-08 19:20
sudhir_Kumar4-Aug-08 19:20 
QuestionClient rectangle not actualized after menu removal Pin
FloatingMarc4-Aug-08 16:40
FloatingMarc4-Aug-08 16:40 
QuestionInlining of consts Pin
not_in_use4-Aug-08 12:17
not_in_use4-Aug-08 12:17 
AnswerRe: Inlining of consts Pin
sashoalm4-Aug-08 21:53
sashoalm4-Aug-08 21:53 
GeneralRe: Inlining of consts Pin
not_in_use5-Aug-08 7:54
not_in_use5-Aug-08 7:54 
QuestionIFilter index Pin
tustin4-Aug-08 11:31
tustin4-Aug-08 11:31 
QuestionConcatenating Icons on status bar Pin
daves444-Aug-08 9:41
daves444-Aug-08 9:41 
QuestionWriting to a bitmap Pin
Anthony Appleyard4-Aug-08 9:31
Anthony Appleyard4-Aug-08 9:31 
AnswerRe: Writing to a bitmap Pin
Perspx4-Aug-08 9:36
Perspx4-Aug-08 9:36 

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.