When an error occurs, it is shown by a MessageRequester(). But I can't see the the MessageRequester(), because it is covered by the Debug window, which is rather big.
So instead of writing
Code: Select all
If error
MessageRequester("Error", "blah blah")
End
EndIf
Code: Select all
If error
CloseDebugWindow()
MessageRequester("Error", "blah blah")
End
EndIf
For this purpose I'm currently using this code by netmaestro (thank you!).
However, a built-in function named say CloseDebugWindow() would be cross-platform and nice to have.