How to add .dll
-
Can you be more detailed about your problem ?
Prasad Notifier using ATL | Operator new[],delete[][^]
-
Can you be more detailed about your problem ?
Prasad Notifier using ATL | Operator new[],delete[][^]
-
I need some functionality in my project related to outlook.But i have one .dll file that contains some function that is useful for me . Thats why i want to use them and this is possible after added the dll my code. How can i do this
manu
manu_2205 wrote:
I need some functionality in my project related to outlook
For this, there must be a interface you want to use.
manu_2205 wrote:
But i have one .dll file that contains some function that is useful for me .
Using dll is same as you was using in VC6. Either by implicit linking or explicit linking.
Prasad Notifier using ATL | Operator new[],delete[][^]
-
manu_2205 wrote:
I need some functionality in my project related to outlook
For this, there must be a interface you want to use.
manu_2205 wrote:
But i have one .dll file that contains some function that is useful for me .
Using dll is same as you was using in VC6. Either by implicit linking or explicit linking.
Prasad Notifier using ATL | Operator new[],delete[][^]
-
Plz tell me about implicit/explicit linking in c++. Actually i am new in c++. Before i have worked in c#. Thanx in advance
manu
Hmmm, you need little reading. This series of articles[^] should give you idea.
Prasad Notifier using ATL | Operator new[],delete[][^]
-
Do you want to use of functions on the dll?
WhiteSky
-
Do you want to use of functions on the dll?
WhiteSky
-
You need to load dll
LoadLibrary
and then use ofGetProcAddress
for return address of function on dll and in the end use ofFreeLibrary
WhiteSky