create form like dll

  • Thread starter Thread starter BJ
  • Start date Start date
B

BJ

is there any way to create complete form with all it's precedures and
functions and buttons and grids etc.
and save that like dll file?? so i can call it from original application
like new form??

tnx!
 
A form is just a class. It is not an application. It is *run* by an
application. So, yes, all you have to do is put the Form into a class
library.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

Big thicks are made up of lots of little thins.
 
BJ,

Create a new class library project and declare and design your form there.
When you build the project it will produce a DLL. Then you can reference
this dll in your applications and use the form.
 
yes....it works!
thank you all!

Stoitcho Goutsev (100) said:
BJ,

Create a new class library project and declare and design your form there.
When you build the project it will produce a DLL. Then you can reference
this dll in your applications and use the form.
 
Back
Top