generating a form from a .dll

  • Thread starter Thread starter Bernie Yaeger
  • Start date Start date
B

Bernie Yaeger

I saw a thread on this a few days ago; can't find it now.

Here's the issue: can you create a form, complete with controls, events,
etc, directly from a .dll. I have used .dll's to reduce code and size in
the main exe, but never a form, because, on the surface, it appeared to be
too involved, but can it be done? What's involved?

Tx for any help.

Bernie Yaeger
 
* "Bernie Yaeger said:
Here's the issue: can you create a form, complete with controls, events,
etc, directly from a .dll. I have used .dll's to reduce code and size in
the main exe, but never a form, because, on the surface, it appeared to be
too involved, but can it be done? What's involved?

Should work -- what's the problem?
 
You create a library and then add a reference to the library in your project
and create an inherited form.

Regards - OHM


Bernie said:
I saw a thread on this a few days ago; can't find it now.

Here's the issue: can you create a form, complete with controls,
events, etc, directly from a .dll. I have used .dll's to reduce code
and size in the main exe, but never a form, because, on the surface,
it appeared to be too involved, but can it be done? What's involved?

Tx for any help.

Bernie Yaeger

Regards - OHM# OneHandedMan{at}BTInternet{dot}com
 
Tx OHM - I'm going to give it a try.

Bernie

One Handed Man said:
You create a library and then add a reference to the library in your project
and create an inherited form.

Regards - OHM




Regards - OHM# OneHandedMan{at}BTInternet{dot}com
 
Back
Top