I've got an app written in VB.NET that creates a menu structure, with each menu item being a module in our application. We are in the process of converting the old VB6 stuff to .NET so there are a mixture of things going off!
Basically, if it's a VB6.0 app I can do this:
Dim a As Object
a = CreateObject(ProgramToCall)
a.StartAtTheEntryPoint
How do I do a similar thing for programs written in .NET?
I can set a reference to all the DLL's that have been written but I'm using a single event handler for the menu click event and would like to call the program on the fly based on properties i've saved in the Tag (e.g. ProgramToCall).
TIA
Clegg
Basically, if it's a VB6.0 app I can do this:
Dim a As Object
a = CreateObject(ProgramToCall)
a.StartAtTheEntryPoint
How do I do a similar thing for programs written in .NET?
I can set a reference to all the DLL's that have been written but I'm using a single event handler for the menu click event and would like to call the program on the fly based on properties i've saved in the Tag (e.g. ProgramToCall).
TIA
Clegg