Hello,
i have following example in the UserMain
procedure SchowMyMessage
begin
MessageBox("Timer works", "Hallo", MB_OK);
end;
procedure TimerStart
begin
StartTimer("test1", 1000);
end;
function OnTimer(TimerName...
I think the issue is in the ExeOutput.
I have tested follow example:
set_include_path(realpath('classes') . PATH_SEPARATOR . get_include_path());
spl_autoload_register(function($className) {
$classFile = $className . '.php';
$file = stream_resolve_include_path($classFile);
if($file) {...