Code: Select all
Program New;
procedure timer1();
begin
  uosay('this sub thread');
end;
begin
SetEventProc(evTimer1,'timer1'); 
while true do
begin
 uosay('this main thread');
 wait(10);
 end;
end.
and....where set Time interval? User manual is Russian,not english
SetEventProc function is Multi thread or Single thread?


