converting a console application to a dll

S

Sarwan

I want to convert a vc++ console application having UI forms to a
dynamic library or a static libray in .Net, where can i find such
procedure for converting.
 
B

Bruno van Dooren [MVP VC++]

I want to convert a vc++ console application having UI forms to a
dynamic library or a static libray in .Net, where can i find such
procedure for converting.

a DLL is nothing but a library of exported functions.
If you want to convert a console application to a DLL, you'll have
to create exported functions that implement the functionality of the console
app.

You'll have to refactor your code a bit for this.
There is no automatic conversion tool, so you'll have to do this by hand.

--

Kind regards,
Bruno van Dooren
(e-mail address removed)
Remove only "_nos_pam"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top