Hi to all

Now newbie to vc++6. Now i am writing a simple application in vc++6
using MFC library. Can anyone help me to how to load the dll files and
display the dialogs within it. For eg. i need to load
nsv_coder_aac.dll file in my application and display the dialog within
it. How can i do this? can anyone help me ????????? thanks in
advance..



Regards,
itekchandru.

Re: How to load dll ? by David

David
Tue Jul 15 07:38:37 CDT 2008

itekchandru wrote:
> Hi to all
>
> Now newbie to vc++6. Now i am writing a simple application in vc++6
> using MFC library. Can anyone help me to how to load the dll files and
> display the dialogs within it. For eg. i need to load
> nsv_coder_aac.dll file in my application and display the dialog within
> it. How can i do this? can anyone help me ????????? thanks in
> advance..


itekchandru:

Normally, when you create a DLL, such as your nsv_coder_aac.dll, the compiler
will also generate a small static import library nsv_coder_aac.lib. You should
link your application with this static library.

If you then place the DLL in the same directory as your executable, your code
will automatically link to it.

--
David Wilkinson
Visual C++ MVP

Re: How to load dll ? by itekchandru

itekchandru
Tue Jul 15 08:15:20 CDT 2008

Yes. I know, how to use the lib files. But now, i didn't have any lib
file for specified dll file. Could you pleas tell me generally how to
load the dll file in the application?

By
itekchandru.

Re: How to load dll ? by David

David
Tue Jul 15 09:12:20 CDT 2008

>Yes. I know, how to use the lib files. But now, i didn't have any lib
>file for specified dll file. Could you pleas tell me generally how to
>load the dll file in the application?

Loading the DLL is trivial - use LoadLibrary.

You then need to know what you're calling - do you have any
documentation and/or header files - you'll have to read those.

Dave

Re: How to load dll ? by itekchandru

itekchandru
Tue Jul 15 09:30:15 CDT 2008

I have no documentation regarding that dll . Ok thanks for the help.

by
itekchandru.

Re: How to load dll ? by Giovanni

Giovanni
Tue Jul 15 09:34:10 CDT 2008


"itekchandru" <kpchandru85@gmail.com> ha scritto nel messaggio
news:b8b119ce-d3a3-4a19-aa09-8ba0e3d60a68@j22g2000hsf.googlegroups.com...
>I have no documentation regarding that dll . Ok thanks for the help.

That DLL seems a WinAmp thing... maybe it is a "private" DLL and the author
did not mean to make it usable from outside, not releasing
proper documentation.

Giovanni