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:
Set mvarComm = CreateObject("MSCommLib.MSComm")
Then once its declared in the object, bind it to the form
VB Code:
Public Property Let SetCommPort(Comm As Object) Set mvarComm = Comm End Property
VB Code:
gSysControl.SetCommPort = frmTowercam.comControl
Does anyone know the library for the timer?
If not, any other way to do this?
Jerel




Reply With Quote