Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi guys .. Can anyone help me with

Status
Not open for further replies.

madhosh

Programmer
Aug 10, 2001
14
Hi guys .. Can anyone help me with following things
1. How to create DLL in VC++.
2. Can I use a INI file to list DLL's, so my program can read the INI file at run time and pick the DLL's listed in it?
 
1. VC++ IDE supports a project option to create
a DLL. Command line tools can be used too, but
it is quite difficult and inconvenient for beginners.

2. Maybe you intend to load a DLL dynamically at
runtime. You can use following 3 APIs

LoadLibrary, FreeLibrary, GetProcAddress

Refer to MSDN to know their usage.
Hee S. Chung
heesc@netian.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top