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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

dll in c++

Status
Not open for further replies.

mrbeginner

Programmer
Jul 31, 2003
2
MY
Hi everyone, i just started learning microsoft visual c++ version 6.0. I just written a program in .c format and i want to change that to a dll format. Can any kind souls out there teach me how to do the conversion.thx
 
hi,
I suggest to don't change program in dll (probably is not possible), but create 2 new projects, one normal and the second dll type, and split your old code in these new.
When you build the main program, refere to your dll in link options.
See on templates how to build your couple of main+dll.

Another suggestion: before copy your code in main+dll,
build them as a little example, (Hello Win): when it
is going, merge your code.
bye
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top