Applies to:
PcVue version 8.0 onwards. |
||
|
||
Summary:
How to use the AITimer, provided with PcVue, in VBA. |
||
|
||
Details:
PcVue provides a component library called Arc Informatique Common Controls. So far this library contains only 1 ActiveX: AITimer. You should use this component when you need a permanent timer instead of the previous one that had to be inserted in a mimic. How to use it?
Dim WithEvents oTimer As AIComCtl.Timer ‘Declare the timer object Private Sub fvProject_StartupComplete() Set oTimer = New AIComCtl.Timer ‘Add a new Timer instance End Sub ‘Called every Timer.Interval Debug.Print Now End Sub |
||
|
||
|
Created on: 12 Jul 2013 Last update: 13 May 2024