Does anyone know how to late bind a Timer in a Class?

I need to use a timer in an object and the timer is located on a form. I have dont the same thing with the MSComm Control but I can figure out how to bind a timer.

To do the comm control I did this
VB Code:
  1. Set mvarComm = CreateObject("MSCommLib.MSComm")

Then once its declared in the object, bind it to the form
VB Code:
  1. Public Property Let SetCommPort(Comm As Object)
  2.  
  3.   Set mvarComm = Comm
  4.  
  5. End Property

VB Code:
  1. gSysControl.SetCommPort = frmTowercam.comControl

Does anyone know the library for the timer?

If not, any other way to do this?

Jerel