07/01/2011, 15:25
|
| | Fecha de Ingreso: diciembre-2009
Mensajes: 32
Antigüedad: 15 años Puntos: 1 | |
Respuesta: Ejecutar función cada segundo Hola podrias probar con esto:
Thread mihilo=new Thread()
{
for(;;){
// ACCIONES AQUI
try{
this.sleep(1000);
}
catch(Exception ex)
}
};
mihilo.start(); |