Hi!
I'm trying to write a plug-in in Delphi, that uses the AfterExecuteWindow function. For some reasons the Return value is not 0,1 or 2. It gaves back 1243548 even if the execution finished with error or success.
Have you got any solution?
procedure AfterExecuteWindow(WindowType, Res: Integer);
begin
ShowMessage(IntTostr(Res));
if(Res = 2) then beep;
end;
Gerie
I'm trying to write a plug-in in Delphi, that uses the AfterExecuteWindow function. For some reasons the Return value is not 0,1 or 2. It gaves back 1243548 even if the execution finished with error or success.
Have you got any solution?
procedure AfterExecuteWindow(WindowType, Res: Integer);
begin
ShowMessage(IntTostr(Res));
if(Res = 2) then beep;
end;
Gerie