Search Results

0
votes

Delphi 2010 Beta: What’s on your wishlist?

a) Multiline strings. b) Better sintax for closures (a anonymous methods evolution). c) Mixins. d) High order functions as methods of arrays and strings: var …
0
votes

replace characters in a file (faster method)

Don't try to optimize without know where. You shoud use the Sampling Profiler (delphitools.info) to know where is the bottleneck. It's easy to use. Precompute the vgood chr convers …
1
vote

Should GExperts Functionality be Incorporated into Delphi?

Please, don't forget the resources from CnWizards. Can't program in Delphi without the CnPack's source highligth enhancements, uses cleaner and procedure list. …
3
votes

What is the fastest way of stripping non alphanumeric characters from a string in Delphi7?

uses JclStrings; S := StrKeepChars('mystring', ['A'..'Z', 'a'..'z', '0'..'9']); …
1
vote

Accidentally created a virus?

In some apps, if I use RtlVclOptimize.pas, the Avira antivirus tell that I have created a virus. …
1
vote

Website talking to client application?

RTC Real Thin Client and remote functions are perfect for this. …
0
votes

Trying to locate SafeMM for Delphi

Why and when to use SafeMM? When SafeMM is a better option than FastMM? …