I found a critical bug.
I have tested with version 7.5.1004 and it works perfectly, but in version 7.5.1006 does not work.
It has to do with StatusDLG, pressing the button "cancel" the statusdlg.
In a search of files in callbackfunctions of it, if we add this code:
function cancel ()
StatusDlg.IsCancelled x = ();
if x == true then
StatusDlg.SetMessage ( "");
StatusDlg.SetStatusText ( "");
StatusDlg.SetAutoSize (false);
StatusDlg.Hide ();
Application.ExitScript ();
end
end
The statusdlg disappears, but the script continues (still scanning).
In version 7.5.1004 if that works correctly

Reply With Quote