And then? What will you do when one of the running timer ticks?
I would suggest using a "List of Timers". You must find a way to pair a timer to an image. Maybe with the Tag-property
Or you can put a timer reference to the tag:
When creating a Listviewitem with an image you setup a new timer
Dim t as Timer
t.Initialize("Timer")
and put it´s reference into the Images Tag
and then, in the image click sub
Sub image_Click
Dim img As ImageView = Sender
Dim t As Timer = img.Tag
t.Enabled = True
End Sub
UNTESTED... Quick typed here in forum
If you need the Tag for some other information then you can use a map and put your other info AND a tier reference into this map and the map into the Tag property...
It depends on your needs