Hi folks,

does anyone know, how do create a QPushButton array with qDesigner?

Example:

int cnt = 20;
QPushButton *butt[cnt];
for ( int i = 0; i < cnt; i++) {
butt[i] = new QPushButton("");
....
}

Can I do such a thing with Designer too?

Thanks for any answers!

Erich