How would one access properties on a dynamic form:
Type type = Type.GetType("GMD.Chart_Forms." + chart);
Form form = (Form)Activator.CreateInstance(type);
form.PROPERTY????? = ...;
form.Show();
I know it's logical that I cannot access it directly becease the information (name of form) will only be available at runtime. But is there a way to access the properties on the dynamic form?