Click here to Skip to main content
15,886,199 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Letter drawing Pin
Richard MacCutchan25-Mar-11 7:21
mveRichard MacCutchan25-Mar-11 7:21 
AnswerRe: Letter drawing Pin
Code-o-mat25-Mar-11 10:02
Code-o-mat25-Mar-11 10:02 
AnswerRe: Letter drawing Pin
Niklas L26-Mar-11 8:53
Niklas L26-Mar-11 8:53 
QuestionKey Press Event Pin
rjkg25-Mar-11 2:44
rjkg25-Mar-11 2:44 
AnswerRe: Key Press Event Pin
Joan M26-Mar-11 3:46
professionalJoan M26-Mar-11 3:46 
Questionproblem when using (detours lib) SetDll.exe to Add a dll to an exe file. Pin
gogosai24-Mar-11 22:13
gogosai24-Mar-11 22:13 
AnswerRe: problem when using (detours lib) SetDll.exe to Add a dll to an exe file. Pin
Nitheesh George24-Mar-11 22:18
Nitheesh George24-Mar-11 22:18 
AnswerRe: problem when using (detours lib) SetDll.exe to Add a dll to an exe file. Pin
Nitheesh George24-Mar-11 22:33
Nitheesh George24-Mar-11 22:33 
Hi,

After reading your posting 3 times, i think that you wanted to a dll reference to another project, right?. If so, when you create a dll project with some export functions the IDE adds the exporting function as like

extern "C" __declspec(dllexport) void myFunc()
{

}

This tells the C++ complier not to use name mangling. So you can use LoadLbrary to get a pointer to this function in this dll like

HMODULE hMod = LoadLibrary("MyDlLL.dll");
GetProcAddress(hMod, "MyFunc");

this works well you specify extern "C"(Please see MSDN to know more about this).

For a dll that doesn't exports any functions/class don't allow accessing the its functions or classes.

If you don't wish to use the loadLibrary u can do the following steps to add a reference to a dll.

1. Mark the class as exported (__declspec(dllexport) class classA)
1. add the header file of the dll you want to refer.
2. Add the lib file of the dll to the linker options(Additional dependencies) of your project.
3. Make sure that you specify the path to lib correctly.
3. compile.

Hopes this helps.

Nitheesh George

http://www.simpletools.co.in
GeneralRe: problem when using (detours lib) SetDll.exe to Add a dll to an exe file. Pin
gogosai24-Mar-11 23:10
gogosai24-Mar-11 23:10 
GeneralRe: problem when using (detours lib) SetDll.exe to Add a dll to an exe file. Pin
Albert Holguin25-Mar-11 13:34
professionalAlbert Holguin25-Mar-11 13:34 
GeneralRe: problem when using (detours lib) SetDll.exe to Add a dll to an exe file. Pin
Nitheesh George27-Mar-11 18:27
Nitheesh George27-Mar-11 18:27 
GeneralRe: problem when using (detours lib) SetDll.exe to Add a dll to an exe file. Pin
Albert Holguin28-Mar-11 3:58
professionalAlbert Holguin28-Mar-11 3:58 
QuestionHow can I change background/text color of CComboBox ? Pin
_Flaviu24-Mar-11 8:30
_Flaviu24-Mar-11 8:30 
AnswerRe: How can I change background/text color of CComboBox ? [modified for conversion from Q to A] Pin
Ozer Karaagac24-Mar-11 15:41
professionalOzer Karaagac24-Mar-11 15:41 
GeneralRe: How can I change background/text color of CComboBox ? Pin
Albert Holguin24-Mar-11 15:43
professionalAlbert Holguin24-Mar-11 15:43 
GeneralRe: How can I change background/text color of CComboBox ? Pin
Ozer Karaagac24-Mar-11 15:58
professionalOzer Karaagac24-Mar-11 15:58 
GeneralRe: How can I change background/text color of CComboBox ? Pin
_Flaviu24-Mar-11 23:36
_Flaviu24-Mar-11 23:36 
GeneralRe: How can I change background/text color of CComboBox ? Pin
వేంకటనారాయణ(venkatmakam)24-Mar-11 23:57
వేంకటనారాయణ(venkatmakam)24-Mar-11 23:57 
GeneralRe: How can I change background/text color of CComboBox ? Pin
_Flaviu25-Mar-11 1:53
_Flaviu25-Mar-11 1:53 
GeneralRe: How can I change background/text color of CComboBox ? Pin
Ozer Karaagac25-Mar-11 2:22
professionalOzer Karaagac25-Mar-11 2:22 
GeneralRe: How can I change background/text color of CComboBox ? Pin
_Flaviu25-Mar-11 2:46
_Flaviu25-Mar-11 2:46 
GeneralRe: How can I change background/text color of CComboBox ? Pin
Ozer Karaagac25-Mar-11 3:13
professionalOzer Karaagac25-Mar-11 3:13 
GeneralRe: How can I change background/text color of CComboBox ? Pin
_Flaviu25-Mar-11 2:59
_Flaviu25-Mar-11 2:59 
GeneralRe: How can I change background/text color of CComboBox ? Pin
Ozer Karaagac25-Mar-11 3:25
professionalOzer Karaagac25-Mar-11 3:25 
GeneralRe: How can I change background/text color of CComboBox ? Pin
Ozer Karaagac25-Mar-11 3:36
professionalOzer Karaagac25-Mar-11 3:36 

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.