Click here to Skip to main content
15,907,281 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
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 
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 
Hi all vc++ programmers,
I am migrating my project from vs-2003 to vs-2008... i am getting the following linking errors...Actually i have 10 .lib files out of which three .lib files are not getting linked..My application is working sucsessfully in release mode...but not working in debug mode... the errors are:
fwpipd.lib(Fwstbk.obj) : error LNK2019: unresolved external symbol "public: int __thiscall DomDebtInfo::HasBeenBilledForFee(class ATL::CStringT<char,class StrTraitMFC_DLL<char,class ATL::ChTraitsCRT<char> > > const &,class ATL::CStringT<char,class StrTraitMFC_DLL<char,class ATL::ChTraitsCRT<char> > > const &HasBeenBilledForFee@DomDebtInfo@@QAEHABV?$CStringT@DV?$StrTraitMFC_DLL@DV?$ChTraitsCRT@D@ATL@@@@@ATL@@0@Z) referenced in function "protected: virtual int __thiscall CFeeStBaseBkNotes::IsEligible(class DomObject &,class DomObject &IsEligible@CFeeStBaseBkNotes@@MAEHAAVDomObject@@0@Z

fwpipd.lib(fwstlt.obj) : error LNK2001: unresolved external symbol "public: int __thiscall DomDebtInfo::HasBeenBilledForFee(class ATL::CStringT<char,class StrTraitMFC_DLL<char,class ATL::ChTraitsCRT<char> > > const &,class ATL::CStringT<char,class StrTraitMFC_DLL<char,class ATL::ChTraitsCRT<char> > > const &HasBeenBilledForFee@DomDebtInfo@@QAEHABV?$CStringT@DV?$StrTraitMFC_DLL@DV?$ChTraitsCRT@D@ATL@@@@@ATL@@0@Z)

Like this i am getting 362 errors........
I have seen in one of the forums that i should wrap the .lib in a DLL and consume that from my application..but i dont get the point..can anybody suggest me about this..............
and please give me any suggestion to go further.....
tanks in advanceeee
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 
GeneralRe: Migrating from vs-2003 to vs-2008,LNK2019:unresolved external symbol Pin
Richard MacCutchan22-Sep-09 6:11
mveRichard MacCutchan22-Sep-09 6:11 
QuestionHow to use the CMFCShellListCtrl Class ? Pin
ryan_lee21-Sep-09 3:36
ryan_lee21-Sep-09 3:36 
QuestionDetect USB Pendrive Pin
Manmohan2921-Sep-09 3:27
Manmohan2921-Sep-09 3:27 

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.