Since it's a srt file i must read the srt file..by (no login)I'm bound to the srt file time format, 00:01:12,087 --> 00:01:13,938 i did a little test yesterday, i think all is there to do it : CLS a% = 3711 MOD 3600 PRINT a% b% = a% MOD 60 PRINT b% c% = INT(a% / 60) PRINT c% END All you need is MOD, and INT... L |