Create a windows application as a DLL

  • Thread starter Thread starter Chakra
  • Start date Start date
C

Chakra

We have a situation where one windows form application needs to invoke forms
in another windows form application. Is it possible for the output of a
windows forms application to be a DLL ?
 
You can certainly have a code library project that compiles to a DLL
that contains classes that have Windows Forms code in them.

There is nothing special about a Windows Forms application project that
requires you to use it.
 
Back
Top