Click here to Skip to main content
15,913,233 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionVisual C++ 6 migrate to Visual Studio 2008 Pin
cancerion7-Jun-10 19:21
cancerion7-Jun-10 19:21 
AnswerRe: Visual C++ 6 migrate to Visual Studio 2008 Pin
Randor 7-Jun-10 20:26
professional Randor 7-Jun-10 20:26 
QuestionHow to send message to the MainFrame from the dll space ? Pin
wangningyu7-Jun-10 18:02
wangningyu7-Jun-10 18:02 
AnswerRe: How to send message to the MainFrame from the dll space ? Pin
Cool_Dev7-Jun-10 19:58
Cool_Dev7-Jun-10 19:58 
GeneralRe: How to send message to the MainFrame from the dll space ? Pin
wangningyu7-Jun-10 20:06
wangningyu7-Jun-10 20:06 
GeneralRe: How to send message to the MainFrame from the dll space ? Pin
Cool_Dev7-Jun-10 20:22
Cool_Dev7-Jun-10 20:22 
GeneralRe: How to send message to the MainFrame from the dll space ? Pin
wangningyu7-Jun-10 20:36
wangningyu7-Jun-10 20:36 
AnswerRe: How to send message to the MainFrame from the dll space ? Pin
Aescleal7-Jun-10 21:08
Aescleal7-Jun-10 21:08 
GeneralRe: How to send message to the MainFrame from the dll space ? Pin
wangningyu7-Jun-10 21:18
wangningyu7-Jun-10 21:18 
QuestionBITMAP.bmBits returning NULLS Pin
ForNow7-Jun-10 13:56
ForNow7-Jun-10 13:56 
AnswerRe: BITMAP.bmBits returning NULLS Pin
Niklas L7-Jun-10 20:59
Niklas L7-Jun-10 20:59 
GeneralRe: BITMAP.bmBits returning NULLS Pin
ForNow8-Jun-10 6:38
ForNow8-Jun-10 6:38 
GeneralRe: BITMAP.bmBits returning NULLS Pin
ForNow8-Jun-10 18:21
ForNow8-Jun-10 18:21 
GeneralRe: BITMAP.bmBits returning NULLS Pin
Niklas L8-Jun-10 23:07
Niklas L8-Jun-10 23:07 
GeneralRe: BITMAP.bmBits returning NULLS Pin
ForNow9-Jun-10 2:56
ForNow9-Jun-10 2:56 
GeneralRe: BITMAP.bmBits returning NULLS Pin
Niklas L9-Jun-10 11:19
Niklas L9-Jun-10 11:19 
GeneralRe: BITMAP.bmBits returning NULLS Pin
ForNow9-Jun-10 13:16
ForNow9-Jun-10 13:16 
GeneralRe: BITMAP.bmBits returning NULLS Pin
Niklas L9-Jun-10 21:57
Niklas L9-Jun-10 21:57 
GeneralRe: BITMAP.bmBits returning NULLS Pin
ForNow10-Jun-10 21:29
ForNow10-Jun-10 21:29 
GeneralRe: BITMAP.bmBits returning NULLS Pin
Niklas L14-Jun-10 9:39
Niklas L14-Jun-10 9:39 
QuestionRequest for a company! Pin
maryamtooty7-Jun-10 5:35
maryamtooty7-Jun-10 5:35 
AnswerRe: Request for a company! Pin
Luc Pattyn7-Jun-10 6:29
sitebuilderLuc Pattyn7-Jun-10 6:29 
GeneralRe: Request for a company! Pin
maryamtooty11-Jun-10 5:28
maryamtooty11-Jun-10 5:28 
QuestionLNK4049 Pin
T.RATHA KRISHNAN7-Jun-10 4:37
T.RATHA KRISHNAN7-Jun-10 4:37 
AnswerRe: LNK4049 Pin
Aescleal7-Jun-10 4:44
Aescleal7-Jun-10 4:44 
This[^] has got some interesting blurb as to why this happens. Follow the advice in there and see what happens.

As printf is a standard library function check that all your source files are being compiled to link with the same version of the runtime library. Without any more information I'd suspect that one file is being compiled to link with the static version of the runtime library and another is being compiled to link with the dynamic version of the library.

Either that or you're trying to do something a bit flash like library interpositioning. If you don't know what that is you're probably better off - it gives me sleepless nights.

Cheers,

Ash

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.