Click here to Skip to main content
15,908,674 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: DLL Load issue Pin
Naveen29-Aug-07 23:31
Naveen29-Aug-07 23:31 
GeneralRe: DLL Load issue Pin
George_George29-Aug-07 23:41
George_George29-Aug-07 23:41 
GeneralRe: DLL Load issue Pin
Naveen29-Aug-07 23:48
Naveen29-Aug-07 23:48 
GeneralRe: DLL Load issue Pin
George_George29-Aug-07 23:53
George_George29-Aug-07 23:53 
GeneralRe: DLL Load issue Pin
Naveen30-Aug-07 0:02
Naveen30-Aug-07 0:02 
GeneralRe: DLL Load issue Pin
George_George30-Aug-07 0:06
George_George30-Aug-07 0:06 
QuestionVC++ dll to C++ Builder Pin
smsmfe29-Aug-07 21:06
smsmfe29-Aug-07 21:06 
AnswerRe: VC++ dll to C++ Builder Pin
eli1502197929-Aug-07 21:53
eli1502197929-Aug-07 21:53 
Hi,

Are you trying to use a class from that DLL?
Becaue in order to do so , you can't just create an instance of that class from your application,
because the constructor of that class is not being exported.
In order to use class from the DLL,your DLL should export a function which create that instance
and return a pointer to the created object.
For example,if you are trying to use a class called MyDllClass,then you need to export the following method:
MyDllClass *CreateMyDllClass()
{
    return new MyDllClass;
}


Goodluck,
Eli
GeneralRe: VC++ dll to C++ Builder Pin
smsmfe29-Aug-07 22:34
smsmfe29-Aug-07 22:34 
GeneralRe: VC++ dll to C++ Builder Pin
eli1502197930-Aug-07 0:00
eli1502197930-Aug-07 0:00 
GeneralRe: VC++ dll to C++ Builder Pin
smsmfe30-Aug-07 1:02
smsmfe30-Aug-07 1:02 
GeneralRe: VC++ dll to C++ Builder Pin
eli1502197930-Aug-07 1:13
eli1502197930-Aug-07 1:13 
GeneralRe: VC++ dll to C++ Builder Pin
smsmfe30-Aug-07 1:18
smsmfe30-Aug-07 1:18 
GeneralRe: VC++ dll to C++ Builder Pin
smsmfe29-Aug-07 23:33
smsmfe29-Aug-07 23:33 
Questionhow to compare char * and WCHAR * Pin
GauranG Shah29-Aug-07 20:58
GauranG Shah29-Aug-07 20:58 
AnswerRe: how to compare char * and WCHAR * Pin
Nishad S29-Aug-07 21:12
Nishad S29-Aug-07 21:12 
AnswerRe: how to compare char * and WCHAR * Pin
Suneet.0329-Aug-07 23:14
Suneet.0329-Aug-07 23:14 
QuestionExcel automation Pin
__yash__29-Aug-07 20:47
professional__yash__29-Aug-07 20:47 
AnswerRe: Excel automation Pin
Roger Broomfield29-Aug-07 21:34
Roger Broomfield29-Aug-07 21:34 
GeneralRe: Excel automation Pin
__yash__29-Aug-07 22:55
professional__yash__29-Aug-07 22:55 
GeneralRe: Excel automation Pin
Roger Broomfield29-Aug-07 23:25
Roger Broomfield29-Aug-07 23:25 
GeneralRe: Excel automation Pin
__yash__30-Aug-07 1:14
professional__yash__30-Aug-07 1:14 
QuestionStack overflow Pin
Maynka29-Aug-07 20:30
Maynka29-Aug-07 20:30 
AnswerRe: Stack overflow Pin
Cedric Moonen29-Aug-07 20:41
Cedric Moonen29-Aug-07 20:41 
AnswerRe: Stack overflow Pin
Stephen Hewitt29-Aug-07 21:17
Stephen Hewitt29-Aug-07 21:17 

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.