You can't create a Timer event with any tag. I guess you can loop through all possible hour:minute combinations, but this will be a very bad and slow solution.
So you need to think of something else. If only one timer can be active at a time, store its start time in an instance variables. If you need multiple timers running, maybe create a timer queue with an array.