[RESOLVED] Load forms from a class library project (.dll) into my new "menu application"
I have a class library project (.dll) which contains a couple of forms.
I now have a new project that would be the Client.
1) How do I load the forms from the dll into this project at runtime?
2) How do I set the client to be the MDiParent of the forms that will be opened from the dll?
Re: Load forms from a class library project (.dll) into my new "menu application"
add library in menu ide project->add reference-> in browse tab choose your .dll file.
define variables :
vb Code:
Imports mylib
Module Module1
Public glib As New mylib.frmLogin ' login at library