Click here to Skip to main content
16,006,605 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: decimal fraction conversion Pin
Alvaro Mendez28-Mar-03 8:12
Alvaro Mendez28-Mar-03 8:12 
GeneralRe: decimal fraction conversion Pin
Josh Knox31-Mar-03 7:46
Josh Knox31-Mar-03 7:46 
GeneralVSS automation Pin
Le centriste28-Mar-03 7:52
Le centriste28-Mar-03 7:52 
GeneralRe: VSS automation Pin
Brian Shifrin29-Mar-03 0:54
Brian Shifrin29-Mar-03 0:54 
GeneralDLL External ref error Pin
Jeff Patterson28-Mar-03 7:20
Jeff Patterson28-Mar-03 7:20 
GeneralRe: DLL External ref error Pin
Le centriste28-Mar-03 7:50
Le centriste28-Mar-03 7:50 
GeneralRe: DLL External ref error Pin
Jeff Patterson28-Mar-03 11:12
Jeff Patterson28-Mar-03 11:12 
GeneralRe: DLL External ref error Pin
John R. Shaw28-Mar-03 16:22
John R. Shaw28-Mar-03 16:22 
I am afraid Michel Prévost is right. You need the right .lib. But I have some questions you need to ask you self. (1) If you are writing add-in using C++ (you did not say), then are you are you making sure you are using C linkage (non-mangled names). Example: When using Visual C/C++ or Visual C++ you need to use
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
ether in the header file or surrounding the include C header file.
(2) Does the library you are attempting to use have the same name as the .dll, If not it is the wrong library and you have a major problem.
(3) If you do not have the right library is there any way that a library can be created from the existing .dll file?
Well I do not know for sure, but I may have seen an aticle on doing that on this site or some where else.
(4) If all else fails contact the company or developers of the IDE you wish to add-in to. On second thought may be you should have tryed this first.

Well I have no solution but I hope the above will give you some direction.

Trust in the code Luke. Yea right!
Generalcreating DLL in VC++ Pin
Yank128-Mar-03 7:01
Yank128-Mar-03 7:01 
GeneralRe: creating DLL in VC++ Pin
Nemanja Trifunovic28-Mar-03 7:03
Nemanja Trifunovic28-Mar-03 7:03 
QuestionDetermining DLL location? Pin
Justin Cooke28-Mar-03 6:52
Justin Cooke28-Mar-03 6:52 
AnswerRe: Determining DLL location? Pin
Nemanja Trifunovic28-Mar-03 7:02
Nemanja Trifunovic28-Mar-03 7:02 
AnswerRe: Determining DLL location? Pin
Big Art28-Mar-03 7:03
Big Art28-Mar-03 7:03 
AnswerRe: Determining DLL location? Pin
RobJones29-Mar-03 6:54
RobJones29-Mar-03 6:54 
AnswerRe: Determining DLL location? Pin
Justin Cooke31-Mar-03 11:29
Justin Cooke31-Mar-03 11:29 
GeneralSOAP and client certificates Pin
Le centriste28-Mar-03 6:52
Le centriste28-Mar-03 6:52 
GeneralConstructor & Destructor Pin
Makover28-Mar-03 6:08
Makover28-Mar-03 6:08 
GeneralRe: Constructor & Destructor Pin
Chris Losinger28-Mar-03 6:11
professionalChris Losinger28-Mar-03 6:11 
GeneralRe: Constructor & Destructor Pin
Daniel Turini28-Mar-03 6:20
Daniel Turini28-Mar-03 6:20 
GeneralRe: Constructor & Destructor Pin
Makover28-Mar-03 6:37
Makover28-Mar-03 6:37 
GeneralRe: Constructor & Destructor Pin
Maximilien28-Mar-03 6:49
Maximilien28-Mar-03 6:49 
GeneralRe: Constructor & Destructor Pin
Alvaro Mendez28-Mar-03 8:18
Alvaro Mendez28-Mar-03 8:18 
GeneralRe: Constructor & Destructor Pin
Tim Smith28-Mar-03 7:25
Tim Smith28-Mar-03 7:25 
GeneralRe: Constructor & Destructor Pin
jbarton28-Mar-03 7:36
jbarton28-Mar-03 7:36 
GeneralBuild like Visual Studio Pin
calgonit28-Mar-03 5:48
calgonit28-Mar-03 5:48 

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.