Click here to Skip to main content
15,912,578 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CWebBrowser2::Navigate Pin
Michael Dunn27-Nov-05 16:16
sitebuilderMichael Dunn27-Nov-05 16:16 
Questionwhat is the use of the CImageIterator Pin
blackeye200426-Nov-05 19:00
blackeye200426-Nov-05 19:00 
AnswerRe: what is the use of the CImageIterator Pin
Johann Gerell26-Nov-05 23:34
Johann Gerell26-Nov-05 23:34 
GeneralRe: what is the use of the CImageIterator Pin
blackeye200426-Nov-05 23:46
blackeye200426-Nov-05 23:46 
GeneralRe: what is the use of the CImageIterator Pin
Johann Gerell27-Nov-05 5:49
Johann Gerell27-Nov-05 5:49 
GeneralRe: what is the use of the CImageIterator Pin
blackeye200427-Nov-05 14:56
blackeye200427-Nov-05 14:56 
Questionerror LNK2001: unresolved external symbol Pin
Chintoo72326-Nov-05 18:03
Chintoo72326-Nov-05 18:03 
AnswerRe: error LNK2001: unresolved external symbol Pin
Garth J Lancaster26-Nov-05 18:39
professionalGarth J Lancaster26-Nov-05 18:39 
Different compilers/vendors 'decorate' functions names with various schemes when they compile your code into object modules - this is commonly known as 'mangling'

In MSVC for example, its possible to decode the function name AND its parameters from looking at a mangled name. There is also, to make things worse, a difference in 'c' vs c++ name generation ...

That you get a LNK2001 error should be obvious - you have a call to that 'FunctionName' in your code and it cant be found in an object module's symbol/export table - maybe you're not linking against the right object/DLL or such

There are plenty of articles out there detailing how to fix this along with stdcall, cdecl discussions (search to find what I mean), I'm probably not the best person to give you a more in-depth reply than this ..

'g'


Questionhow to check if a local link exists? Pin
includeh1026-Nov-05 17:53
includeh1026-Nov-05 17:53 
AnswerRe: how to check if a local link exists? Pin
Chintoo72327-Nov-05 1:20
Chintoo72327-Nov-05 1:20 
QuestionTAPI and CLI (Calling line identity) Pin
Vaclav26-Nov-05 17:34
Vaclav26-Nov-05 17:34 
QuestionHow to request a local file? Pin
includeh1026-Nov-05 17:33
includeh1026-Nov-05 17:33 
AnswerRe: How to request a local file? Pin
Michael Dunn27-Nov-05 16:20
sitebuilderMichael Dunn27-Nov-05 16:20 
Questionabout the CxImage Pin
blackeye200426-Nov-05 16:07
blackeye200426-Nov-05 16:07 
QuestionHow can a window in a dialog receive keyboard message? Pin
sude26-Nov-05 15:49
sude26-Nov-05 15:49 
AnswerRe: How can a window in a dialog receive keyboard message? Pin
includeh1026-Nov-05 18:00
includeh1026-Nov-05 18:00 
AnswerRe: How can a window in a dialog receive keyboard message? Pin
Joel Lucsy27-Nov-05 8:52
Joel Lucsy27-Nov-05 8:52 
QuestionClosing all open handles to a disk device Pin
hrepa26-Nov-05 13:06
hrepa26-Nov-05 13:06 
QuestionRe: Closing all open handles to a disk device Pin
David Crow27-Nov-05 11:19
David Crow27-Nov-05 11:19 
AnswerRe: Closing all open handles to a disk device Pin
hrepa27-Nov-05 11:46
hrepa27-Nov-05 11:46 
Questionreading a script file Pin
islheg26-Nov-05 6:59
islheg26-Nov-05 6:59 
QuestionSetFont and GetFont Pin
Nishad S25-Nov-05 23:42
Nishad S25-Nov-05 23:42 
AnswerRe: SetFont and GetFont Pin
Mircea Puiu27-Nov-05 2:54
Mircea Puiu27-Nov-05 2:54 
GeneralRe: SetFont and GetFont Pin
Nishad S27-Nov-05 16:56
Nishad S27-Nov-05 16:56 
GeneralRe: SetFont and GetFont Pin
Mircea Puiu27-Nov-05 18:46
Mircea Puiu27-Nov-05 18: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.