Okay so I have a few problems that I need help with. The main one being Multi Form Access.
Multi-Form Access:
How would I go about accessing items in a secondary form. Like with .NET it would be:
'.NET Syntax'
formName.itemName.Enabled = true
'or'
formName.itemName.Enabled = false
However this isn't working with C# and I can't seem to figure it out.
DLLs:
I'm making multiple DLLs for the various applications that are included inside of my main application. I believe these are technically called "plug-ins". The idea is for the user to download the DLL then put it in a folder named "Plugins" in the resource area. I don't want all of them to be available for usage at run time unless they have been activated into the program and the user has the DLL in the folder named "Plugins". My questions are:
1: How do I set this up in such a manner. I would need the program to check and see if the DLL files are in the Plugins folder and if they aren't then just do nothing. If they are then plug them into the application.
2: How to store the fact that they've been activated into the program somehow after run time. (Some sort of encryption activation. For testing purposes I have it using a 16 character encryption not including the hyphens inbetween sets of four. xxxx-xxxx-xxxx-xxxx)
Much thanks to whoever helps. :D