Trying to raise an event in an ActiveX control from a module (.bas file).
Been trying to create a timer control that will go past the 1 minute limit of the vb6 timer.ocx. The Windows API SetTimer will do this. But wanted to create an Active X timer control that will raise it's own Timer Event.
In the module.bas file:
Public Sub TimerProc (ByVal hWnd as Long, ByVal uMsg as Long, ByVal idEvent as Long, ByVal lpFunc as long)
' This is where I would like to somehow activate the event in the
' ActiveX control code. But am stumped. I was wondering if it were
' possible to change a property value in the ActiveX Control at this
' portion of the code? If so, then code could be written in the
' ActiveX control with the Property Change to fire the Timer event.
End Sub
Any ideas? This is a hard core problem. Who has a hard core solution?
Thanks,
Hank