Click here to Skip to main content
15,915,508 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How UnRAR a rar file with password Pin
hack00418-Jan-12 2:17
hack00418-Jan-12 2:17 
GeneralRe: How UnRAR a rar file with password Pin
CPallini18-Jan-12 2:58
mveCPallini18-Jan-12 2:58 
Questionin win32api problem working with dll Pin
a1_shay17-Jan-12 13:08
a1_shay17-Jan-12 13:08 
AnswerRe: in win32api problem working with dll Pin
Albert Holguin17-Jan-12 13:26
professionalAlbert Holguin17-Jan-12 13:26 
GeneralRe: in win32api problem working with dll Pin
a1_shay17-Jan-12 13:37
a1_shay17-Jan-12 13:37 
GeneralRe: in win32api problem working with dll Pin
Albert Holguin17-Jan-12 13:41
professionalAlbert Holguin17-Jan-12 13:41 
GeneralRe: in win32api problem working with dll Pin
a1_shay17-Jan-12 13:45
a1_shay17-Jan-12 13:45 
GeneralRe: in win32api problem working with dll Pin
Albert Holguin17-Jan-12 13:55
professionalAlbert Holguin17-Jan-12 13:55 
You have to have the full path as you used in the second thing you wrote up there. Make sure the file is there and the file is accessible (not locked somehow).

This error:
Error 50 error LNK2019: unresolved external symbol _showall referenced in function _WndProc@16 1.obj
...means that it cannot find the showall function (with some decoration), this may be caused for a number of reasons, the function either doesn't exist in the library, or the settings between the lib and the executable that determine the function name mangling (or decoration) are different (see this[^]). You can avoid function decorations by importing/exporting functions using C-style methods for importing/exporting from libraries (which used no decorators at all). This may be your issue.

You had posted a different error before, so not sure if your linker is even finding the library file correctly.
GeneralRe: in win32api problem working with dll Pin
Richard MacCutchan17-Jan-12 23:02
mveRichard MacCutchan17-Jan-12 23:02 
GeneralRe: in win32api problem working with dll Pin
Albert Holguin18-Jan-12 4:38
professionalAlbert Holguin18-Jan-12 4:38 
GeneralRe: in win32api problem working with dll Pin
Richard MacCutchan18-Jan-12 6:12
mveRichard MacCutchan18-Jan-12 6:12 
Questionin win32api i need animation ,jumping ball .someone know where i can find the code for this ? Pin
a1_shay17-Jan-12 11:46
a1_shay17-Jan-12 11:46 
AnswerRe: in win32api i need animation ,jumping ball .someone know where i can find the code for this ? Pin
Richard MacCutchan17-Jan-12 11:51
mveRichard MacCutchan17-Jan-12 11:51 
AnswerRe: in win32api i need animation ,jumping ball .someone know where i can find the code for this ? Pin
Albert Holguin17-Jan-12 13:28
professionalAlbert Holguin17-Jan-12 13:28 
Questionin win32api resize window Pin
a1_shay17-Jan-12 6:16
a1_shay17-Jan-12 6:16 
AnswerRe: in win32api resize window Pin
Chris Meech17-Jan-12 6:30
Chris Meech17-Jan-12 6:30 
GeneralRe: in win32api resize window Pin
Albert Holguin17-Jan-12 6:46
professionalAlbert Holguin17-Jan-12 6:46 
JokeRe: in win32api resize window Pin
Chris Meech17-Jan-12 6:51
Chris Meech17-Jan-12 6:51 
GeneralRe: in win32api resize window Pin
Albert Holguin17-Jan-12 6:54
professionalAlbert Holguin17-Jan-12 6:54 
AnswerRe: in win32api resize window Pin
Albert Holguin17-Jan-12 6:48
professionalAlbert Holguin17-Jan-12 6:48 
AnswerRe: in win32api resize window Pin
CPallini17-Jan-12 6:50
mveCPallini17-Jan-12 6:50 
AnswerRe: in win32api resize window Pin
David Crow17-Jan-12 6:54
David Crow17-Jan-12 6:54 
AnswerRe: in win32api resize window Pin
PJ Arends17-Jan-12 9:27
professionalPJ Arends17-Jan-12 9:27 
GeneralRe: in win32api resize window Pin
a1_shay17-Jan-12 11:44
a1_shay17-Jan-12 11:44 
GeneralRe: in win32api resize window Pin
Albert Holguin17-Jan-12 13:58
professionalAlbert Holguin17-Jan-12 13:58 

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.