Click here to Skip to main content
15,917,859 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: OnSize for CDialog doesn't get entered Pin
ns31-Mar-06 6:05
ns31-Mar-06 6:05 
QuestionProblems again Pin
Waldermort31-Mar-06 4:39
Waldermort31-Mar-06 4:39 
AnswerRe: Problems again Pin
Wes Aday31-Mar-06 4:46
professionalWes Aday31-Mar-06 4:46 
AnswerRe: Problems again Pin
David Crow31-Mar-06 4:49
David Crow31-Mar-06 4:49 
GeneralRe: Problems again Pin
Waldermort31-Mar-06 4:56
Waldermort31-Mar-06 4:56 
GeneralRe: Problems again Pin
David Crow31-Mar-06 5:06
David Crow31-Mar-06 5:06 
GeneralRe: Problems again Pin
Waldermort31-Mar-06 5:26
Waldermort31-Mar-06 5:26 
GeneralRe: Problems again Pin
David Crow31-Mar-06 5:30
David Crow31-Mar-06 5:30 
GeneralRe: Problems again Pin
Waldermort31-Mar-06 5:58
Waldermort31-Mar-06 5:58 
QuestionRe: Problems again Pin
David Crow31-Mar-06 6:05
David Crow31-Mar-06 6:05 
AnswerRe: Problems again Pin
Waldermort31-Mar-06 6:17
Waldermort31-Mar-06 6:17 
GeneralSolved Pin
Waldermort31-Mar-06 6:36
Waldermort31-Mar-06 6:36 
GeneralRe: Solved Pin
David Crow31-Mar-06 6:59
David Crow31-Mar-06 6:59 
GeneralRe: Problems again Pin
David Crow31-Mar-06 6:55
David Crow31-Mar-06 6:55 
GeneralRe: Problems again Pin
Waldermort31-Mar-06 7:11
Waldermort31-Mar-06 7:11 
GeneralRe: Problems again Pin
David Crow31-Mar-06 7:17
David Crow31-Mar-06 7:17 
QuestionHow to encrpyt a file and decrpyt on the fly Pin
beko31-Mar-06 3:32
beko31-Mar-06 3:32 
QuestionRe: How to encrpyt a file and decrpyt on the fly Pin
David Crow31-Mar-06 3:57
David Crow31-Mar-06 3:57 
AnswerRe: How to encrpyt a file and decrpyt on the fly Pin
beko31-Mar-06 22:03
beko31-Mar-06 22:03 
Questionhow can i add DLL file in my application Pin
baldha rakesh31-Mar-06 2:27
baldha rakesh31-Mar-06 2:27 
GeneralRe: [OT] Pin
kakan31-Mar-06 2:51
professionalkakan31-Mar-06 2:51 
GeneralRe: [OT] Pin
kakan31-Mar-06 2:57
professionalkakan31-Mar-06 2:57 
GeneralRe: [OT] Pin
Toby Opferman31-Mar-06 21:45
Toby Opferman31-Mar-06 21:45 
AnswerRe: how can i add DLL file in my application Pin
Cedric Moonen31-Mar-06 2:53
Cedric Moonen31-Mar-06 2:53 
CoCreateInstance is used with COM technology, which is a particular type of DLL.


Bankey Khandelwal wrote:
i want to add a dll file in MFC dialog base application and use it,


If you simply what that (and nothing to do with COM or ActiveX or else), you can simply add the header files to your project (implicitlinking) and lin to the library supplied with your dll. The second method (which is explicit linking) is to load your dll with LoadLibrary then retrieve functions pointers in it (you need to know the name of the exported functions) with GetProcAddress.
AnswerRe: how can i add DLL file in my application Pin
Laxman Auti31-Mar-06 17:53
Laxman Auti31-Mar-06 17:53 

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.