Hello.

It's been a while since I last posted something, but this attracted my attention. Since many of my programs share the same type of code, I decided to dump it all in a class library for other programs to use.

Now I have a problem, Windows Forms in a class library can't be displayed. There is no "Show(Dialog)" command, only some for event handling. All properties are gone as well. The only way I managed to display a form is by making it as a new variable: 'Dim f as windows.forms.form

But this won't work because of the enormous amount of handlers added to the original.

How can I show my (TextureBrowse in my case) Dialog so other programs can use it?

Help greatly appreciated.