Search found 10709 matches
- Mon Dec 04, 2023 10:24 am
- Forum: madExcept
- Topic: After installing madExcept 5.1.3, Alexandria 11.3 does not start.
- Replies: 11
- Views: 3281
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...
- Mon Dec 04, 2023 10:18 am
- Forum: madExcept
- Topic: Delphi 11.2 crash when installing madExcept_.bpl
- Replies: 11
- Views: 4049
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 ...
- Thu Nov 23, 2023 10:49 am
- Forum: madCodeHook
- Topic: [question] error code 31..
- Replies: 3
- Views: 1082
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?
Did you sign the hook DLL at all, or not? If so, did you sign the hook DLL before or after calling madConfigDrv?
- Wed Nov 22, 2023 10:31 am
- Forum: madExcept
- Topic: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded
- Replies: 7
- Views: 1476
Re: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded
No problem at all, I'm happy to hear that madExcept is innocent... 

- Wed Nov 22, 2023 10:07 am
- Forum: madExcept
- Topic: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded
- Replies: 7
- Views: 1476
Re: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded
Does this only happen if you create a new project? Or does it also happen if you restart the Delphi IDE, then switch between the 2 newly created projects and compile them alternatingly?
- Thu Nov 09, 2023 2:52 pm
- Forum: madExcept
- Topic: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded
- Replies: 7
- Views: 1476
Re: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded
Unfortunately, I've no idea what the issue could be, and it would be extremely time consuming trying to figure this out. So my suggestion would be to use an ugly workaround: 1) Remove the package from the IDE. 2) Instead setup a "post build event" in the project settings, where you call &q...
- Wed Nov 08, 2023 10:16 pm
- Forum: madExcept
- Topic: ANN: madExcept 5.1.4 (with Delphi 12 support)
- Replies: 2
- Views: 759
- Wed Nov 08, 2023 5:31 pm
- Forum: madExcept
- Topic: ANN: madExcept 5.1.4 (with Delphi 12 support)
- Replies: 2
- Views: 759
ANN: madExcept 5.1.4 (with Delphi 12 support)
Today I'm releasing madExcept 5.1.4 with Delphi 12 support:
http://madshi.net/madCollection.exe (installer 2.8.13.0)
http://madshi.net/madCollection.exe (installer 2.8.13.0)
- Wed Nov 08, 2023 5:30 pm
- Forum: madCollection
- Topic: Delphi 12
- Replies: 2
- Views: 1368
- Wed Nov 08, 2023 5:29 pm
- Forum: madExcept
- Topic: MadExcept not intergrating into applications
- Replies: 3
- Views: 970
Re: MadExcept not intergrating into applications
I'm sorry, I missed this thread.
Does this problem also happen with a brand new test project?
And have you tried running the compiled EXE outside of the IDE? Does it work then?
Does this problem also happen with a brand new test project?
And have you tried running the compiled EXE outside of the IDE? Does it work then?
- Wed Nov 08, 2023 10:04 am
- Forum: madCollection
- Topic: Delphi 12
- Replies: 2
- Views: 1368
Re: Delphi 12
I think it's not officially released yet? I plan to add support very quickly after it's released.
- Tue Nov 07, 2023 7:52 am
- Forum: madCodeHook
- Topic: [request] inject dll on specified process(pid) by driver
- Replies: 1
- Views: 592
Re: [request] inject dll on specified process(pid) by driver
The driver actually isn't able to inject into already running processes. It doesn't have the code for that. The madCodeHook injection driver only injects into newly created processes. Injecting into already running processes is the job of the user mode library. Are you doing the user mode injection ...
- Thu Nov 02, 2023 10:02 pm
- Forum: madCodeHook
- Topic: Hook Specific address
- Replies: 7
- Views: 1349
Re: Hook Specific address
Try hooking loc_4a3b80 instead of sub_42e843, that should work.
- Thu Nov 02, 2023 7:59 am
- Forum: madCodeHook
- Topic: Hook Specific address
- Replies: 7
- Views: 1349
Re: Hook Specific address
That error code means "code not interceptable", which means that madCodeHook thinks that it's not safe to hook that code.
Can you do this:
Then please post the contents of "as1" here.
Can you do this:
Code: Select all
uses madDisAsm;
var as1 : AnsiString;
begin
ParseFunction(Pointer($0042E843), as1);
- Wed Nov 01, 2023 2:25 pm
- Forum: madCodeHook
- Topic: Hook Specific address
- Replies: 7
- Views: 1349
Re: Hook Specific address
You mean HookCode fails? If so, what does GetLastError say?