Search found 10766 matches

by madshi
Fri Apr 12, 2024 5:13 pm
Forum: madExcept
Topic: D12.1 terminate when ide exception happen
Replies: 11
Views: 118

Re: D12.1 terminate when ide exception happen

The default configuration is stored in the registry, but that doesn't usually become active. In your case, I believe one of the DLLs or BPLs loaded in the IDE will have madExcept marked as "enabled" in its settings. This is stored in the BPLs/DLLs resource section in the resource named &qu...
by madshi
Thu Apr 11, 2024 2:05 pm
Forum: madExcept
Topic: D12.1 terminate when ide exception happen
Replies: 11
Views: 118

Re: D12.1 terminate when ide exception happen

This doesn't seem like a "fresh 12.1 install without anything installed yet". I can see that a multitude of things is already installed: - JCL - VirtualTrees - SynEdit - Raize Any many other things. I can only assume that one of those was compiled with madExcept marked as enabled. But it's...
by madshi
Thu Apr 11, 2024 7:17 am
Forum: madExcept
Topic: D12.1 terminate when ide exception happen
Replies: 11
Views: 118

Re: D12.1 terminate when ide exception happen

Yeah, please do attach the bug report, maybe I can see something.
by madshi
Mon Apr 08, 2024 4:47 pm
Forum: madExcept
Topic: D12.1 terminate when ide exception happen
Replies: 11
Views: 118

Re: D12.1 terminate when ide exception happen

There *must* be some BPL loaded in the IDE which enables madExcept, there's no other explanation I can think of. The madExcept_.bpl and madExceptVcl_.bpl do not do that. But madExceptIde_.bpl does. But that one is no longer loaded by default. Are you 100% sure that there are no other packages loaded...
by madshi
Mon Apr 08, 2024 12:42 pm
Forum: madExcept
Topic: D12.1 terminate when ide exception happen
Replies: 11
Views: 118

Re: D12.1 terminate when ide exception happen

Then there must be one of your own packages (or some 3rd party package) loaded in the IDE, which was compiled with madExcept being active. That will then activate exception catching within the whole IDE.
by madshi
Mon Apr 08, 2024 10:55 am
Forum: madExcept
Topic: D12.1 terminate when ide exception happen
Replies: 11
Views: 118

Re: D12.1 terminate when ide exception happen

Do you have the "madExceptIde_.bpl" package loaded in your IDE? If yes, please remove it. That should fix it.
by madshi
Mon Apr 08, 2024 10:06 am
Forum: madExcept
Topic: Leak reporting not working - help to debug
Replies: 3
Views: 71

Re: Leak reporting not working - help to debug

Hopefully it's working for good now, and won't stop working after a while!
by madshi
Fri Apr 05, 2024 4:14 pm
Forum: madExcept
Topic: Leak reporting not working - help to debug
Replies: 3
Views: 71

Re: Leak reporting not working - help to debug

The leak reporting functionality is implemented in madExcept32/64.dll, which doesn't actually ship with source code (I don't want to give my competition an easy way to copy the functionality). Could it be a simple NTFS file access right problem? Try storing to a folder where "Everyone" has...
by madshi
Wed Apr 03, 2024 2:18 pm
Forum: madExcept
Topic: Leak Detecting
Replies: 2
Views: 80

Re: Leak Detecting

Yep, seems you found the solution already! 8)
by madshi
Wed Apr 03, 2024 2:16 pm
Forum: madExcept
Topic: Madexcept with msbuild
Replies: 4
Views: 3579

Re: Madexcept with msbuild

Sorry for the late reply, just seeing your comment now. Does it work when compiling within the IDE?
by madshi
Thu Mar 28, 2024 5:40 pm
Forum: madExcept
Topic: Using madExcept in Web CGI stand-alone executable
Replies: 12
Views: 7451

Re: Using madExcept in Web CGI stand-alone executable

Originally you added code directly after "Application.Run". Why did you go away from that? It seemed to make sense for me. You could just check "fWait" there instead of "AmOnline".
by madshi
Fri Mar 22, 2024 10:08 pm
Forum: madExcept
Topic: Strange exception message
Replies: 3
Views: 129

Re: Strange exception message

Well, that's the reason why there are no line numbers, then. Though, "Unit1" sounds like your unit, so I would expect to see line numbers for those lines. Anyway, looking through the callstack, it seems that SIBEABase.pas in "TSIBEventThread.DoEvent" calls "TRexpressPrintSer...
by madshi
Fri Mar 22, 2024 9:31 pm
Forum: madExcept
Topic: Strange exception message
Replies: 3
Views: 129

Re: Strange exception message

Is "ppPrintr" your own unit? Or is it a 3rd party unit? Or a Delphi unit?
by madshi
Wed Mar 20, 2024 10:43 am
Forum: madExcept
Topic: madExcept Window to small on High-DPI
Replies: 7
Views: 341

Re: madExcept Window to small on High-DPI

Glad to hear that, will change it in the next build.
by madshi
Wed Mar 20, 2024 9:51 am
Forum: madExcept
Topic: madExcept Window to small on High-DPI
Replies: 7
Views: 341

Re: madExcept Window to small on High-DPI

Can you try this: 1) Copy madExcept.pas and mad.inc into your project folder. 2) In madExcept.pas search for "stdac(THandle(-4))" and comment that line out, while leaving the "stdac(THandle(-1))" line in place like this: if @stdac <> nil then begin stdac(THandle(-1)); //stdac(THa...