Forum Discussion
AlexanderLinkov
Alumni
11 years agoHello,
As far as I understand, you want to call TestSetUp.TimerRoutine when the timer elapses. But, in your example, you do not call the TestSetUp routine to set this timer.
For example, the Delay routine should look like this:
uses TestSetUp;
procedure Delay;
begin
TestSetUp.TestSetUp();
aqUtils.Delay(68000);
end;
Does this solve your problem?