Click here to Skip to main content
15,890,557 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHide ' X ' box in a dialog [modified] Pin
Shashi.Shinde28-Apr-09 17:34
Shashi.Shinde28-Apr-09 17:34 
AnswerRe: Hide ' X ' box in a dialog Pin
_AnsHUMAN_ 28-Apr-09 17:50
_AnsHUMAN_ 28-Apr-09 17:50 
GeneralRe: Hide ' X ' box in a dialog Pin
Shashi.Shinde28-Apr-09 21:50
Shashi.Shinde28-Apr-09 21:50 
GeneralRe: Hide ' X ' box in a dialog Pin
CPallini28-Apr-09 21:59
mveCPallini28-Apr-09 21:59 
QuestionUNC path names.... Pin
Peter Weyzen28-Apr-09 9:39
Peter Weyzen28-Apr-09 9:39 
AnswerRe: UNC path names.... Pin
David Crow28-Apr-09 9:42
David Crow28-Apr-09 9:42 
QuestionWMI copy file to remote host Pin
Jack Rong28-Apr-09 8:41
Jack Rong28-Apr-09 8:41 
AnswerNicely spammed into 4 forums Pin
led mike28-Apr-09 8:57
led mike28-Apr-09 8:57 
GeneralRe: Nicely spammed into 4 forums Pin
CPallini28-Apr-09 9:25
mveCPallini28-Apr-09 9:25 
GeneralRe: Nicely spammed into 4 forums Pin
led mike28-Apr-09 10:39
led mike28-Apr-09 10:39 
QuestionRe: WMI copy file to remote host Pin
David Crow28-Apr-09 9:39
David Crow28-Apr-09 9:39 
QuestionCListCtrl flickers on Vista Pin
00.Siddu28-Apr-09 5:40
00.Siddu28-Apr-09 5:40 
QuestionRe: CListCtrl flickers on Vista Pin
David Crow28-Apr-09 8:28
David Crow28-Apr-09 8:28 
AnswerRe: CListCtrl flickers on Vista Pin
00.Siddu28-Apr-09 9:36
00.Siddu28-Apr-09 9:36 
QuestionRe: CListCtrl flickers on Vista Pin
David Crow28-Apr-09 9:45
David Crow28-Apr-09 9:45 
AnswerRe: CListCtrl flickers on Vista Pin
00.Siddu28-Apr-09 22:07
00.Siddu28-Apr-09 22:07 
AnswerRe: CListCtrl flickers on Vista Pin
Steve Thresher29-Apr-09 2:32
Steve Thresher29-Apr-09 2:32 
AnswerRe: CListCtrl flickers on Vista Pin
00.Siddu4-May-09 3:16
00.Siddu4-May-09 3:16 
Questionsending email Pin
santanukarmakar28-Apr-09 5:12
santanukarmakar28-Apr-09 5:12 
AnswerRe: sending email Pin
Stuart Dootson28-Apr-09 5:23
professionalStuart Dootson28-Apr-09 5:23 
QuestionLNK2005 Error: basic_string already defined Pin
SkysTheLimit28-Apr-09 4:35
SkysTheLimit28-Apr-09 4:35 
AnswerRe: LNK2005 Error: basic_string already defined Pin
Stuart Dootson28-Apr-09 5:45
professionalStuart Dootson28-Apr-09 5:45 
Wow - you've already done a lot more investigation than most people who ask questions here Smile | :)

What can I suggest....

1. I notice that some of your libs use "/Od" and others don't and others use "/Ox". This will affect how methods of template classes (like std::basic_string) are inlined in your libraries - it's possible (I think) that a std::basic_string method may be embedded in an object file and then re-exported from a library?

2. I'd be tempted to use dumpbin (it comes with VS) or objdump (comes with GCC, if you have that installed) to dump various properties of the lib files (use dumpbin /all library-name) and then search through the resultant text for names of basic_string methods that look like they're defined rather than referenced?

3. Or maybe delete lib4, then add object files back into lib4 one by one, to see when the LNK2005 occurs?

So - no concrete answers, just possibilities Frown | :-(

Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

GeneralRe: LNK2005 Error: basic_string already defined Pin
SkysTheLimit28-Apr-09 7:52
SkysTheLimit28-Apr-09 7:52 
GeneralRe: LNK2005 Error: basic_string already defined Pin
Stuart Dootson28-Apr-09 8:37
professionalStuart Dootson28-Apr-09 8:37 
GeneralRe: LNK2005 Error: basic_string already defined Pin
SkysTheLimit28-Apr-09 8:46
SkysTheLimit28-Apr-09 8:46 

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.