Inherance Form

  • Thread starter Thread starter Darkblade
  • Start date Start date
D

Darkblade

Hi, I need create a Form and create a DLL, I opened a new windows
application and made the form, after I opened a command prompt and
introduced "csc /target:library /out:MyLibrary.DLL Form1.cs", DLL is ok
(I think...), Well, I want create a new application that shows the
DLL's form to a client.

Thank you.
 
Hi,

Reference the DLL from the EXE (which should be a Windows Forms app that
properly utilizes the Application class). Then, create an instance of the
form like you'd do with a form inside the EXE and show it as usual. Does
this answer your question?
 
Back
Top