exe & dll

alanchinese

Regular
Joined
Jan 12, 2005
Messages
62
just to see if there is a simpler way to do this:
i want to have a form that compiles to the exe file.
also, i want the same form to be referenced by other forms.

what i did was compile the form into dll, and create another "launcher" to display the form
 
Only objects in DLLs can be shared so if you have multiple EXEs that need to use the same form then you can put that form in a DLL.

alanchinese said:
also, i want the same form to be referenced by other forms.

Not quite sure what you mean, you can reference any object in the same assembly.
 
Back
Top