I have 4 old upload modules. These upload modules make use of a dll someone written a long time ago. This project is lost and I don't really want do decompile the dll.
I would like to have one upload module where they can select one of these 4 upload modules.
They all have this code in the program.cs:
[STAThread] static void Main() { new APACMiscUM(); } This class triggers the dll.
namespace ApacMiscUploadModule { class APACMiscUM : UploadModule.UploadModule { public override void applicationStart() { showMessage("Upload Module", Color.Green); Connection = new SqlConnection("X"); } public override void fileSelected() { ... } } } When the new object is created (APACMiscUM) the dll (UploadModule.UploadModule) creates the interface. How can I activate this form after clicking a button on a new form?
ADDITIONAL INFO:
