Search found 6 matches

by flightrisk
Fri Aug 01, 2014 7:51 pm
Forum: madExcept
Topic: "Mapping binary file failed"
Replies: 23
Views: 32833

Re: "Mapping binary file failed"

I have the same issue, but I am wondering if it is the type of project I am creating. I created developed a set of ActiveX controls from a set of VCL controls. So the end result is an ActiveX which is a form of DLL. Can MadExcept work with this kind of project or only a VCL Forms application?
by flightrisk
Thu Mar 24, 2011 8:43 pm
Forum: madExcept
Topic: Problems getting it to popup on exception in XE
Replies: 15
Views: 10879

Problems getting it to popup on exception in XE

I could have sworn this was working before, but in my test project, I can't get MadExcept to except. I just get the default messages from the application. So I created a button and put this on: procedure TForm12.Button1Click(Sender: TObject); var x, y, z: Integer; begin x:=1; y:=0; z := x div y; end...
by flightrisk
Tue Mar 01, 2011 9:51 pm
Forum: madShell
Topic: Shell Events: What is the pattern?
Replies: 1
Views: 10150

Shell Events: What is the pattern?

Hi, I'm just using trial and error with the madshell RegisterShellEvent command. I am getting strange and inconsistent results: If you use Explorer to add and delete files to an UNWATCHED folder, you will get double events and the event will be Item Created and Item Deleted. If you use an exe that w...
by flightrisk
Tue Mar 01, 2011 2:10 pm
Forum: madShell
Topic: RegisterShellEvent gets "no overloaded version" error
Replies: 4
Views: 14257

Re: RegisterShellEvent gets "no overloaded version" error

Great job on all the code by the way. I went through a painful conversion of a set of VCL and ActiveX controls that have over 100,000 lines of code. It was all API code with strings, pchars, pointers to C structures in memory and pointer math. I had to go over it line by line. What took me a while t...
by flightrisk
Tue Mar 01, 2011 2:45 am
Forum: madShell
Topic: RegisterShellEvent gets "no overloaded version" error
Replies: 4
Views: 14257

Re: RegisterShellEvent gets "no overloaded version" error

I'll answer my own question ;) It looks like the examples have not been updated along with the source. With Delphi 2009 and above, the base types for certain things like string and char were changed for UNICODE. So where before a char was mapped to an ansichar, it is now mapped to a widechar. So thi...
by flightrisk
Tue Mar 01, 2011 1:29 am
Forum: madShell
Topic: RegisterShellEvent gets "no overloaded version" error
Replies: 4
Views: 14257

RegisterShellEvent gets "no overloaded version" error

I'm getting "There is no overloaded version of "RegisterShellEvent" and UnRegisterShellEvent. " I am in Delphi XE and copied the code right out of the example code on the WEB. I tried just RegisterShellEvent(ShellEvent) with no parameters and that won't even work. I can't figure ...