Simple to all except me obviously - Setting up an Elapsed Time counter - I've got it counting seconds and displaying those seconds BUT can't quite figure out how to have it show 5:00 minutes vs. 300 seconds. Any help appreciated!
One of several approaches
nSecs = 300
strMinSec = nSecs/60:':':StrFixCharsL(nSecs mod 60, '0', 2)