Abort, error popup at the bottom of window

Is there another way to stop TMS Web Core application execution in main thread without triggering exception?

Abort();
Can we disable specific error popup (at the bottom of the window) in debug build? Abort is application controlled exception in most cases so console.log would be sufficient.

  1. Handle it in a try/except
  2. You can set the type of error notification at application level with:
    Application.ErrorType: TApplicationErrorType
    with:
    TApplicationErrorType = (aeSilent, aeDialog, aeAlert, aeFooter);

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.