ich bekomm folgenden fehler bei dieser funktion:
illegal 'Handle'. Call outside of a program block.
In der Hilfe ist aber ein beispiel mit genau diese codestück.
was nu

function OnBegin()
begin
// TODO: Perform custom initialization steps, check requirements, etc.
// Check for Administrator-rights
Handler (EXIT, Exit_Handler);
if(Is ( USER_ADMINISTRATOR , "" ) == TRUE) then // "" is ignored
MessageBox("",SEVERE);
Do(EXIT);
endif;
goto myend;
Exit_Handler:
abort;
myend:;
end;