is it possible to create instances of a class programmatically?
for example, I will need to create anywhere from 10-20 forms programmatically
so I will do:
Form graphs = new Form1(dateStart.Value.ToShortDateString(), dateEnd.Value.ToShortDateString(),cbQCValues.Text,cbAnalytes.Text,cbInstruments.Text);
however the constructors are going to be different each time so I need to put this in a for loop
so I will need to run the above code how ever many times I need to. for example 10-20 times. I will need to have form classes graphs1, graphs2, graphs3...
is this possible?