Click here to Skip to main content
15,886,873 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Is there an easy way to have read only edit boxes or controls which are not all "greyed" out. Pin
Nuri Ismail21-Sep-09 8:24
Nuri Ismail21-Sep-09 8:24 
AnswerRe: Is there an easy way to have read only edit boxes or controls which are not all "greyed" out. Pin
Rajesh R Subramanian21-Sep-09 8:25
professionalRajesh R Subramanian21-Sep-09 8:25 
GeneralRe: Is there an easy way to have read only edit boxes or controls which are not all "greyed" out. Pin
Neil Urquhart21-Sep-09 19:33
Neil Urquhart21-Sep-09 19:33 
AnswerRe: Is there an easy way to have read only edit boxes or controls which are not all "greyed" out. Pin
Code-o-mat21-Sep-09 8:27
Code-o-mat21-Sep-09 8:27 
QuestionVC++ Pin
thangvel21-Sep-09 5:16
thangvel21-Sep-09 5:16 
AnswerRe: VC++ Pin
Rajesh R Subramanian21-Sep-09 6:18
professionalRajesh R Subramanian21-Sep-09 6:18 
QuestionRe: VC++ Pin
David Crow21-Sep-09 9:02
David Crow21-Sep-09 9:02 
Questionsome libraries are not getting linked in debug mode(vs-2008) but working in release mode [modified] Pin
Vetukuri Raju21-Sep-09 4:55
Vetukuri Raju21-Sep-09 4:55 
hi..
i am converting my project from vs-2003 to vs-2008..it is working properly in release
mode..but not in debug mode..i have checked all my settings...they are similar...
In the below two bolded commandline,i made the differences in italic to better understand
my settingd->linker->commandline looks like(in release mode):

/OUT:"./../../Production Releases/Phoenix32.exe" /INCREMENTAL /NOLOGO /LIBPATH:".\..\..\lib"
/LIBPATH:"..\..\sybase\lib" /MANIFEST /MANIFESTFILE:".\Release\Phoenix32.exe.intermediate.manifest"
/MANIFESTUAC:"level='asInvoker' uiAccess='false'" /NODEFAULTLIB:"libc.lib" /NODEFAULTLIB:"msvcrt.lib"
/NODEFAULTLIB:"msvcprt.lib"
/DEF:".\PHOENIX.DEF" /DELAYLOAD:"OleAcc.dll" /PDB:".\Release/Phoenix32.pdb" /MAP:".\Release/Phoenix32.map"
/SUBSYSTEM:WINDOWS /DYNAMICBASE:NO /ERRORREPORT:PROMPT winmm.lib libsybdb.lib IEngine.lib fwfip.lib fwstruct.lib
fwpip.lib fwpfg.lib dbl32.lib dom32.lib csdlib32.lib csdfw32.lib csdxtra32.lib oldnames.lib version.lib
"..\..\dom\lib\dom32d.lib" "..\..\dbl\lib\dbl32d.lib" "..\..\lib\fwfipd.lib"
"..\..\csdfw\lib\csdfw32d.lib" "..\..\lib\iengined.lib" "..\..\lib\fwpipd.lib" "..\..\lib\fwstructd.lib"
"..\..\lib\fwpfgd.lib" "..\..\csdlib\debug\csdlib32d.lib" "..\..\csdxtra\lib\csdxtra32d.lib"
DelayImp.lib


But in debug mode it is looking like this:
/OUT:"Debug/Phoenix32.exe" /INCREMENTAL /NOLOGO /LIBPATH:".\..\..\lib" /LIBPATH:"..\..\sybase\lib"
/MANIFEST /MANIFESTFILE:".\Debug\Phoenix32.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker'
uiAccess='false'" /NODEFAULTLIB:"libcd.lib" /NODEFAULTLIB:"msvcrtd.lib" /NODEFAULTLIB:"msvcprtd.lib"
/DEF:".\PHOENIX.DEF" /DELAYLOAD:"OleAcc.dll" /DEBUG /PDB:".\Debug/Phoenix32.pdb" /SUBSYSTEM:WINDOWS
/DYNAMICBASE:NO /ERRORREPORT:PROMPT winmm.lib libsybdb.lib IEngined.lib fwfipd.lib fwstructd.lib fwpipd.lib
fwpfgd.lib dbl32d.lib dom32d.lib csdlib32d.lib csdfw32d.lib csdxtra32d.lib oldnames.lib version.lib
"..\..\dom\lib\dom32d.lib""..\..\dbl\lib\dbl32d.lib" "..\..\csdfw\lib\csdfw32d.lib"
"..\..\csdlib\debug\csdlib32d.lib" "..\..\csdxtra\lib\csdxtra32d.lib"
DelayImp.lib

But i have given every library through linker settings.......
can anybody suggest in this regard......

modified on Monday, September 21, 2009 11:05 AM

AnswerRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Richard MacCutchan21-Sep-09 7:31
mveRichard MacCutchan21-Sep-09 7:31 
AnswerRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Rajesh R Subramanian21-Sep-09 9:00
professionalRajesh R Subramanian21-Sep-09 9:00 
GeneralRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Richard MacCutchan21-Sep-09 11:40
mveRichard MacCutchan21-Sep-09 11:40 
GeneralRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Rajesh R Subramanian21-Sep-09 17:51
professionalRajesh R Subramanian21-Sep-09 17:51 
GeneralRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Richard MacCutchan22-Sep-09 1:52
mveRichard MacCutchan22-Sep-09 1:52 
GeneralRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Saurabh.Garg21-Sep-09 15:40
Saurabh.Garg21-Sep-09 15:40 
GeneralRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Rajesh R Subramanian21-Sep-09 17:53
professionalRajesh R Subramanian21-Sep-09 17:53 
GeneralRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Saurabh.Garg21-Sep-09 18:57
Saurabh.Garg21-Sep-09 18:57 
GeneralRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Rajesh R Subramanian21-Sep-09 19:49
professionalRajesh R Subramanian21-Sep-09 19:49 
GeneralRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Saurabh.Garg21-Sep-09 19:58
Saurabh.Garg21-Sep-09 19:58 
GeneralRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Rajesh R Subramanian22-Sep-09 0:06
professionalRajesh R Subramanian22-Sep-09 0:06 
AnswerRe: some libraries are not getting linked in debug mode(vs-2008) but working in release mode Pin
Saurabh.Garg21-Sep-09 15:38
Saurabh.Garg21-Sep-09 15:38 
Questionhow to use Workbook.XmlImport() method in C++ Pin
Andraw11121-Sep-09 4:35
Andraw11121-Sep-09 4:35 
AnswerRe: how to use Workbook.XmlImport() method in C++ Pin
Andraw11121-Sep-09 4:42
Andraw11121-Sep-09 4:42 
QuestionMigrating from vs-2003 to vs-2008,LNK2019:unresolved external symbol Pin
Vetukuri Raju21-Sep-09 3:52
Vetukuri Raju21-Sep-09 3:52 
AnswerRe: Migrating from vs-2003 to vs-2008,LNK2019:unresolved external symbol Pin
Richard MacCutchan21-Sep-09 7:34
mveRichard MacCutchan21-Sep-09 7:34 
GeneralRe: Migrating from vs-2003 to vs-2008,LNK2019:unresolved external symbol Pin
Vetukuri Raju22-Sep-09 4:28
Vetukuri Raju22-Sep-09 4:28 

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.