Click here to Skip to main content
15,895,011 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Hello Pin
Richard MacCutchan10-Jan-14 1:10
mveRichard MacCutchan10-Jan-14 1:10 
GeneralRe: Hello Pin
MrKBA10-Jan-14 2:16
MrKBA10-Jan-14 2:16 
GeneralRe: Hello Pin
Richard MacCutchan10-Jan-14 2:29
mveRichard MacCutchan10-Jan-14 2:29 
AnswerRe: Hello Pin
Stefan_Lang10-Jan-14 3:50
Stefan_Lang10-Jan-14 3:50 
GeneralRe: Hello Pin
MrKBA15-Jan-14 0:03
MrKBA15-Jan-14 0:03 
GeneralRe: Hello Pin
Stefan_Lang15-Jan-14 0:08
Stefan_Lang15-Jan-14 0:08 
GeneralRe: Hello Pin
MrKBA15-Jan-14 3:05
MrKBA15-Jan-14 3:05 
GeneralRe: Hello Pin
Stefan_Lang15-Jan-14 4:40
Stefan_Lang15-Jan-14 4:40 
Maybe it's best you take another look at the error message you got. In the line
m_pICDBrowser->Initialize(m_pPLMClientMgr);

the error message states that it cannot convert the first parameter in the call (m_pPLMClientMgr to the type that the function expects.

According to the error message, the type of m_pPLMClientMgr is SeeSPMPLMClientLib::ISeeSPMPLMClientPtr, but the type it expects is My_Dll_Namespace::ISeeSPMPLMClient *.

This implies, that you have a type ISeeSPMPLMClientPtr defined somewhere in namespace SeeSPMPLMClientLib, but it is not defined as the required type My_Dll_Namespace::ISeeSPMPLMClient *.

I suspect that you mixed up the two namespaces. Maybe you inserted a using namespace somewhere (always a bad idea), and then you no longer saw what namespace the definitions and types refer to, or maybe you just have a wrong type definition.
GOTOs are a bit like wire coat hangers: they tend to breed in the darkness, such that where there once were few, eventually there are many, and the program's architecture collapses beneath them. (Fran Poretto)

Questiona real problem i been facing in release mode Pin
jone201329-Jan-14 20:33
jone201329-Jan-14 20:33 
AnswerRe: a real problem i been facing in release mode Pin
SoMad9-Jan-14 20:54
professionalSoMad9-Jan-14 20:54 
GeneralRe: a real problem i been facing in release mode Pin
jone201329-Jan-14 21:02
jone201329-Jan-14 21:02 
GeneralRe: a real problem i been facing in release mode Pin
SoMad9-Jan-14 21:08
professionalSoMad9-Jan-14 21:08 
GeneralRe: a real problem i been facing in release mode Pin
jone201329-Jan-14 21:33
jone201329-Jan-14 21:33 
AnswerRe: a real problem i been facing in release mode Pin
Jochen Arndt9-Jan-14 21:08
professionalJochen Arndt9-Jan-14 21:08 
GeneralRe: a real problem i been facing in release mode Pin
jone201329-Jan-14 21:24
jone201329-Jan-14 21:24 
AnswerRe: a real problem i been facing in release mode Pin
Stefan_Lang9-Jan-14 22:34
Stefan_Lang9-Jan-14 22:34 
GeneralRe: a real problem i been facing in release mode Pin
jone2013210-Jan-14 9:43
jone2013210-Jan-14 9:43 
AnswerRe: a real problem i been facing in release mode Pin
Alan Balkany10-Jan-14 5:21
Alan Balkany10-Jan-14 5:21 
GeneralRe: a real problem i been facing in release mode Pin
jone2013214-Jan-14 7:22
jone2013214-Jan-14 7:22 
AnswerRe: a real problem i been facing in release mode Pin
jschell12-Jan-14 9:00
jschell12-Jan-14 9:00 
GeneralRe: a real problem i been facing in release mode Pin
jone2013214-Jan-14 7:25
jone2013214-Jan-14 7:25 
QuestionFile time issue Pin
_Flaviu7-Jan-14 0:55
_Flaviu7-Jan-14 0:55 
AnswerRe: File time issue Pin
Richard MacCutchan7-Jan-14 2:53
mveRichard MacCutchan7-Jan-14 2:53 
AnswerRe: File time issue Pin
Jochen Arndt7-Jan-14 3:02
professionalJochen Arndt7-Jan-14 3:02 
GeneralRe: File time issue Pin
_Flaviu7-Jan-14 21:45
_Flaviu7-Jan-14 21:45 

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.