StartTimer doesn't work

stefanstfnh

New member
Hello,
i have following example in the UserMain
Code:
procedure SchowMyMessage
begin                                                          
    MessageBox("Timer works", "Hallo", MB_OK);
end; 

procedure TimerStart
begin          
    StartTimer("test1", 1000); 
end;

function OnTimer(TimerName: String): Boolean;
begin                              
 SchowMyMessage();                            
 Result := False;                                  
end;
I’m calling the TimerStart procedure in the OnStartMainWindow Function, but doesn’t work.

I’m calling the procedure with PHP… doesn’t work.
what am I doing wrong?
 
Last edited:
StartTimer is not working properly in ExeOutput 1.x, and we introduced a replacement in ExeOutput 2, allowing some “CRON jobs”.
 
Back
Top