Click here to Skip to main content
15,892,005 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: .LIB file Pin
Chris Losinger23-Oct-06 4:18
professionalChris Losinger23-Oct-06 4:18 
AnswerRe: .LIB file Pin
int_encrypt24-Oct-06 11:13
int_encrypt24-Oct-06 11:13 
QuestionDavid Bagaturia Pin
Dato(Baga)22-Oct-06 21:19
Dato(Baga)22-Oct-06 21:19 
AnswerRe: David Bagaturia Pin
David Crow23-Oct-06 4:02
David Crow23-Oct-06 4:02 
Questionusing dll Pin
samira forooghi22-Oct-06 21:07
samira forooghi22-Oct-06 21:07 
AnswerRe: using dll Pin
Jonathan [Darka]22-Oct-06 21:14
professionalJonathan [Darka]22-Oct-06 21:14 
GeneralRe: using dll Pin
samira forooghi22-Oct-06 22:09
samira forooghi22-Oct-06 22:09 
AnswerRe: using dll Pin
mpk197922-Oct-06 22:44
mpk197922-Oct-06 22:44 
you need to take a pointer to a function that has been exported from DLL ,GetProcAddress in client will be returning that function's address which you need to assign to that pointer.
using this pointer you can call the functionality present in the DLL.

For Ex:


typedef void (* pFn)(int);
pFn fn;
fn=(pFn)GetProcAddress( );
fn();


mpk1979
GeneralRe: using dll Pin
samira forooghi23-Oct-06 0:08
samira forooghi23-Oct-06 0:08 
QuestionChange back color of window Pin
A_Fa22-Oct-06 20:54
A_Fa22-Oct-06 20:54 
AnswerRe: Change back color of window Pin
Midworld0823-Oct-06 1:30
Midworld0823-Oct-06 1:30 
GeneralRe: Change back color of window Pin
A_Fa23-Oct-06 2:18
A_Fa23-Oct-06 2:18 
QuestionDelete the items in Program list? Pin
Arul Joseph22-Oct-06 20:23
Arul Joseph22-Oct-06 20:23 
AnswerRe: Delete the items in Program list? Pin
David Crow23-Oct-06 4:04
David Crow23-Oct-06 4:04 
GeneralRe: Delete the items in Program list? Pin
Mark Salsbery23-Oct-06 6:38
Mark Salsbery23-Oct-06 6:38 
QuestionDelete the ICON from Task bar Permenantly? Pin
Arul Joseph22-Oct-06 20:21
Arul Joseph22-Oct-06 20:21 
AnswerRe: Delete the ICON from Task bar Permenantly? Pin
Mark Salsbery23-Oct-06 6:39
Mark Salsbery23-Oct-06 6:39 
QuestionSetting of Property Page For a ActiveX Control Pin
zareee22-Oct-06 19:30
zareee22-Oct-06 19:30 
QuestionGUI flashy effects Pin
kiranin22-Oct-06 19:26
kiranin22-Oct-06 19:26 
AnswerRe: GUI flashy effects Pin
A_Fa22-Oct-06 20:58
A_Fa22-Oct-06 20:58 
Questionfstream Pin
kk.tvm22-Oct-06 18:38
kk.tvm22-Oct-06 18:38 
AnswerRe: fstream Pin
Cedric Moonen22-Oct-06 20:20
Cedric Moonen22-Oct-06 20:20 
GeneralRe: fstream Pin
kk.tvm22-Oct-06 22:53
kk.tvm22-Oct-06 22:53 
GeneralRe: fstream Pin
Cedric Moonen22-Oct-06 23:06
Cedric Moonen22-Oct-06 23:06 
GeneralRe: fstream Pin
David Crow23-Oct-06 4:08
David Crow23-Oct-06 4:08 

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.