Ver Mensaje Individual
  #4 (permalink)  
Antiguo 30/03/2007, 07:27
Avatar de CésarBalaguer
CésarBalaguer
 
Fecha de Ingreso: octubre-2006
Ubicación: en mi casa
Mensajes: 181
Antigüedad: 18 años, 7 meses
Puntos: 0
Re: Función que no se ejecuta pero no da error

sin meterme mucho en el codigo y a simple vista encontrè un error...
tu còdigo dice:
if (b=0){
arrayerror[0]=True;
vcorrecto=false;
}
deberìa edcir:
if (b==0){
arrayerror[0]=True;
vcorrecto=false;
}