How to change the default size of the bug report window?

delphi package - automated exception handling
Post Reply
ai148
Posts: 16
Joined: Fri Oct 04, 2013 12:50 pm

How to change the default size of the bug report window?

Post by ai148 »

madExcept_ExceptionBox.jpg
madExcept_ExceptionBox.jpg (79.57 KiB) Viewed 3090 times
We want to increase height and width of this window.

Thank you.
Reiner
madshi
Site Admin
Posts: 10764
Joined: Sun Mar 21, 2004 5:25 pm

Re: How to change the default size of the bug report window?

Post by madshi »

You can use the following callbacks (exported by madExcept.pas) to be notified about when the window is created and then at that point in time you can probably simply increase the window size:

Code: Select all

// do you want to be notified when a madExcept exception box was created/destroyed?
var
  OnExceptBoxCreate  : procedure (exceptBox: HWND; simpleMsgBox: boolean) = nil;
  OnExceptBoxDestroy : procedure = nil;
Hope that helps?
ai148
Posts: 16
Joined: Fri Oct 04, 2013 12:50 pm

Re: How to change the default size of the bug report window?

Post by ai148 »

Thank you - it works
Post Reply