converting a console application to a dll

  • Thread starter Thread starter Sarwan
  • Start date Start date
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.
 
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"
 
Back
Top