Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Convert seconds into days,hours,minutes and seconds
Message
De
31/03/2004 06:31:17
 
 
À
30/03/2004 21:19:26
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00891059
Message ID:
00891117
Vues:
26
What is the best way to convert seconds into days,hours,minutes and seconds
RETURN PADL( INT( tnElapsedSeconds / 86400 ), 3 )+' Days ';
  + PADL( INT(( tnElapsedSeconds % 86400 ) / 3600 ), 2, '0' )+' Hrs ' ;
  + PADL( INT(( tnElapsedSeconds % 3600 ) / 60 ), 2, '0')+' Min ' ;
  + PADL( INT( tnElapsedSeconds % 60 ), 2, '0' )+' Sec '
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform