I have found in an old topic this:

object newobject = Activator.CreateInstance(comboBox1.GetType); 

but doesn't work:

The best overloaded method match for System.Activator.CreateInstance(System.Type, params object[]) has some invalid arguments

The problem is I have this : http://it.tinypic.com/r/mtpcih/8

The group box is declared, not dynamically, I want to if I click the button Add one Field a new group box equal to the first one (Fields 1) appear.

At the form load event, I can create an instance of array of group box to make easier the access to data on text box?

I hope that someone can help me.

有帮助吗?

解决方案

object newobjcet = Activator.CreateInstance(comboBox1.GetType()); 

You are missing the braces.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top