Search found 12 matches

by a-s-z
Thu Sep 11, 2014 12:29 pm
Forum: madCollection
Topic: OutOfMemory when compiling in Delphi XE2
Replies: 3
Views: 7355

Re: OutOfMemory when compiling in Delphi XE2

Hi, I have solved the problem by changing sources. The map file is now read in chunks of 4 Mb. No problems any more :D In addition I have optimized the parsing routine a little bit. madExceptPatch needed 9 seconds before and now about 2 seconds to patch the application :wink: Best regards, Andre
by a-s-z
Thu Sep 11, 2014 6:17 am
Forum: madCollection
Topic: OutOfMemory when compiling in Delphi XE2
Replies: 3
Views: 7355

Re: OutOfMemory when compiling in Delphi XE2

Hi,

I have managed to compile the bpl and debug it with Delphi.
The exception is thrown in madMapFile.pas line 604, the size of the map file is approx. 61 MB.

Best regards,
Andre
by a-s-z
Wed Sep 10, 2014 12:08 pm
Forum: madCollection
Topic: OutOfMemory when compiling in Delphi XE2
Replies: 3
Views: 7355

OutOfMemory when compiling in Delphi XE2

Hi, the expert is not working in my project. An OutOfMemory-Exception is thrown, after linking the exe. I have updated to latest version, since the changelog said that patching is not done in IDE process any more. Unfortunatly the error is not gone. After activating expert logging I could see that t...
by a-s-z
Fri Jan 22, 2010 10:26 am
Forum: madCollection
Topic: Naming internal madExcept threads for debugging
Replies: 3
Views: 8154

Hi, When using Delphi 7 or newer Delphi versions, "NameThread" should already inform the IDE about the thread names. Which Delphi version are you using? I am using Delphi2009. I know that NameThread does inform the IDE, but for the internal threads created by madExcept, SetThreadInfo is us...
by a-s-z
Wed Jan 20, 2010 2:18 pm
Forum: madCollection
Topic: Naming internal madExcept threads for debugging
Replies: 3
Views: 8154

Naming internal madExcept threads for debugging

Hello, As mentioned in online help, I can use procedure NameThread to name individual threads. madExcept seems to use SetThreadInfo to name internal threads, so the thread name does not show up in the ide. Is it possible to show meaningful names in the ide for internal threads of madExcept, e.g. 'Se...
by a-s-z
Fri Nov 27, 2009 11:03 am
Forum: madCollection
Topic: Accessing madHelp from other programs / wizards
Replies: 8
Views: 11929

Hi madshi,
madshi wrote:Great! I'm not in a hurry. Just let me know when you're done. Thanks!
When will you release next version, supporting the interface for CustomHelp?
by a-s-z
Mon Oct 19, 2009 2:41 pm
Forum: madCollection
Topic: Accessing madHelp from other programs / wizards
Replies: 8
Views: 11929

Hi madshi,
madshi wrote:Great! I'm not in a hurry. Just let me know when you're done. Thanks!
I have sent the changes to you by email.
by a-s-z
Thu Oct 15, 2009 3:16 pm
Forum: madCollection
Topic: Accessing madHelp from other programs / wizards
Replies: 8
Views: 11929

Hi, Ok, sounds good to me! Would you be willing to simply do the changes you need to madHelp.pas and send the file back to me? I'd then simply use your modified file. That would be great cause it wouldn't cost me any time... :D OK, I will do my best;) Please be patient until next week, since I am bu...
by a-s-z
Thu Oct 15, 2009 1:01 pm
Forum: madCollection
Topic: Accessing madHelp from other programs / wizards
Replies: 8
Views: 11929

Hello madshi, trying to understand this: Are you doing this for your own personal needs or do you plan to do something for all madExcept customers? I'm a bit confused right now, because doing such changes just for your personal needs sounds a bit like overkill to me right now, but maybe I'm just not...
by a-s-z
Thu Oct 15, 2009 9:14 am
Forum: madCollection
Topic: Accessing madHelp from other programs / wizards
Replies: 8
Views: 11929

Accessing madHelp from other programs / wizards

Hello, I want to access the madCollection help through an other ide wizard (CustomHelp). The idea is to show the help topics in a custom selector form and show the selected topic in the ide welcome page. Is it possible to publish the required class definitions in madHelp.pas, and make a function, th...
by a-s-z
Wed Sep 16, 2009 1:25 pm
Forum: madBasic
Topic: Problem with PosText
Replies: 2
Views: 13234

Thanks, works like a charm now!

Greets,
Andre
by a-s-z
Tue Sep 15, 2009 11:40 am
Forum: madBasic
Topic: Problem with PosText
Replies: 2
Views: 13234

Problem with PosText

Hello, when searching backwards in unicode strings, the PosText function does not yield the expected results. Sample code: program TestMadStrings; {$APPTYPE CONSOLE} uses madStrings; function IfThen(ACond: boolean; ATrue, AFalse: string): string; begin if ACond then Result := ATrue else Result := AF...