Search found 10766 matches

by madshi
Sat Jan 13, 2024 4:38 pm
Forum: madBasic
Topic: MethodToProcedure, Linux
Replies: 5
Views: 15390

Re: MethodToProcedure, Linux

Sure.
by madshi
Sat Jan 13, 2024 11:10 am
Forum: madBasic
Topic: MethodToProcedure, Linux
Replies: 5
Views: 15390

Re: MethodToProcedure, Linux

That's fine, I don't mind.
by madshi
Sat Jan 13, 2024 9:34 am
Forum: madExcept
Topic: Converting TStackItem or TStackTrace to a string
Replies: 2
Views: 35333

Re: Converting TStackItem or TStackTrace to a string

You can use "exceptIntf.BugReportSections[0]" instead. This will be the crashing thread, which is usually (but not always) the main thread.
by madshi
Sat Jan 13, 2024 9:32 am
Forum: madExcept
Topic: Standalone bug report creation in DLL
Replies: 1
Views: 26861

Re: Standalone bug report creation in DLL

Is it not your own EXE file? Or what is the reason you want this to independent of the EXE file? Do you want bug reports to be created only for crashes in your own DLL or also for crashes in the EXE file?
by madshi
Sat Jan 13, 2024 9:31 am
Forum: madExcept
Topic: Delphi 2007 integration
Replies: 1
Views: 28000

Re: Delphi 2007 integration

The installer should add the packages madBasic_.bpl, madDisAsm_.bpl, madExcept_.bpl and madExceptWizard.bpl to your IDE. Can you check your list of installed IDE packages to see if these are listed? Maybe they are unchecked? If they are checked, you should have a menu item "madExcept Settings&q...
by madshi
Sat Jan 13, 2024 9:28 am
Forum: madBasic
Topic: MethodToProcedure, Linux
Replies: 5
Views: 15390

Re: MethodToProcedure, Linux

I'm sorry, I've no experience with Linux.
by madshi
Tue Jan 09, 2024 10:35 pm
Forum: madExcept
Topic: After installing madExcept 5.1.3, Alexandria 11.3 does not start.
Replies: 14
Views: 141414

Re: After installing madExcept 5.1.3, Alexandria 11.3 does not start.

madExcept32.dll is only used for leak reporting and the "instantly crash" feature. So it seems that some BPL that is loaded in the IDE tries to activate leak reporting and/or "instantly crash". Which is definitely not default behavior for madExcept. Do you have any of your own BP...
by madshi
Sat Jan 06, 2024 9:58 pm
Forum: madExcept
Topic: Application crashes when generating leak reports
Replies: 20
Views: 25477

Re: Application crashes when generating leak reports

Is it a 32bit or 64bit application? In 32bit, it's very easy to run out of RAM, especially when using leak reporting. Anyway, your original problem does not really indicate a leak, I think instead it indicates that you probably have a secondary thread that is still running while your application is ...
by madshi
Sat Jan 06, 2024 9:54 pm
Forum: madExcept
Topic: Unit initialization order
Replies: 1
Views: 23009

Re: Unit initialization order

I don't think so. madExcept itself doesn't know, either.
by madshi
Sat Jan 06, 2024 1:22 pm
Forum: madCollection
Topic: Delphi 12
Replies: 16
Views: 49741

Re: Delphi 12

Yes, of course.
by madshi
Tue Jan 02, 2024 6:29 pm
Forum: fun talk
Topic: Happy New Year!
Replies: 21
Views: 141304

Re: Happy New Year!

Same!! :crazy:
by madshi
Thu Dec 14, 2023 10:12 am
Forum: madExcept
Topic: Add Application platform x32/x64 to the bug report
Replies: 1
Views: 22889

Re: Add Application platform x32/x64 to the bug report

You can very easily add it yourself: unit AddPlatformToBugReport; interface implementation uses madExcept; procedure AddPlatform(const exceptIntf: IMEException; var handled: boolean); begin {$ifdef win64} exceptIntf.BugReportHeader['platform'] := 'x64'; {$else} exceptIntf.BugReportHeader['platform']...
by madshi
Mon Dec 04, 2023 10:24 am
Forum: madExcept
Topic: After installing madExcept 5.1.3, Alexandria 11.3 does not start.
Replies: 14
Views: 141414

Re: After installing madExcept 5.1.3, Alexandria 11.3 does not start.

FWIW, I have all Delphi versions from Delphi 4 up to Delphi 12 installed on my dev PC, and it works just fine. So not really sure what the problem was exactly...
by madshi
Mon Dec 04, 2023 10:18 am
Forum: madExcept
Topic: Delphi 11.2 crash when installing madExcept_.bpl
Replies: 12
Views: 59836

Re: Delphi 11.2 crash when installing madExcept_.bpl

When loading which BPL exactly? Is it a "naked" Delphi 12 installation, with no other 3rd party packages installed yet? Or do you have other 3rd party packages installed? I'm wondering if it might be some sort of incompatability with other 3rd party packages? Also, could you please verify ...
by madshi
Thu Nov 23, 2023 10:49 am
Forum: madCodeHook
Topic: [question] error code 31..
Replies: 3
Views: 34191

Re: [question] error code 31..

That might mean that the DLL is not recognized by the driver. Can you confirm that the driver is actually running?

Did you sign the hook DLL at all, or not? If so, did you sign the hook DLL before or after calling madConfigDrv?