Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/05/2007, 17:03
MonicaH
 
Fecha de Ingreso: junio-2006
Mensajes: 329
Antigüedad: 18 años, 9 meses
Puntos: 1
Array/indices de TextField es posible?

Hola,

estoy intentando crear unos TextField con indices:

Código PHP:
int i=0;
while(
i<indices){
    
TextField kmpo[i]=new TextField(1);
    
add(kmpo[i]);
    
i++;
    } 
Pero no me funciona.

Pueden ayudarme plis ?