ListBox Timer

D

DS

I have a listbox that shows records with their elapsed time.
As such...
Record Opened Elapsed
1 10:00 1:00:00
2 10:20 1:25:00

I know how to show elapsed time for a single record in a textbox, but
how do you show multiple lapsed times in a listbox?

Any help appreciated,
Thanks
DS
 
D

DS

DS said:
I have a listbox that shows records with their elapsed time.
As such...
Record Opened Elapsed
1 10:00 1:00:00
2 10:20 1:25:00

I know how to show elapsed time for a single record in a textbox, but
how do you show multiple lapsed times in a listbox?

Any help appreciated,
Thanks
DS
As usual making things more complicated than they need be. Timer
Interval set to 1000 and Timer event requeries the listbox. Bingo!
Thanks
DS
 
Top