I'm using a class Alarm:
VB Code:
  1. Public Class Alarm
  2.     Public message As String
  3.     Public alarmTime As Date
  4.     Public fileToPlay As String
  5.     Public play, showMessageBox, showPopupMessage As CheckState
  6.  
  7.     Public timer As Timer
  8. End Class
and I have a list of Alarm objects. I want to be able to set a list of alarms, not just one. The problem is I need a Timer_Tick() method for each of them, and I don't know how to implement this.
Any suggestions? Thank you.