En fait, mon appel du timer (SetTimer(...) ) se fait dans une boucle for:
for (int h = 0;h<nb;h++)
{
if (Serie.Open(PortCom)==false) MessageBox("ERREUR",MB_OK);
Serie.EnvoyLigne(param1[h],param2[h],param3[h],param4[h]);
do{ reponse=Serie.RecevoirRep() }while (reponse==0xFF);
if (reponse==0) MessageBox("ERREUR",MB_OK);
else if (reponse==1) SetTimer(ID_COUNT_TIMER, 10, NULL);
Serie.Close();
}
je souhaite appeler le timer à chaque coup ou il passe sur la fonction plutôt qu'il se range dans la file d'attente !!!
une autre idée??????

