1
vote
Delphi Popup Menu Checks
To enlarge on Zartog's post: Popup menus in Delphi (from at least D6) have a GroupIndex property which allow you to have multiple sets of radio items within a menu. Set GroupIndex to 1 for the firs …
4
votes
How do I fill a Delphi set?
Low() and High() are "compiler magic" functions that can be evaluated at compile time.
This allows their use in constant declarations like the following:
var
MySet : TBorderIcons;
My …
1
vote
TStringList vs. TList<string>
As TStringList is a descendant of TStrings it is compatible with the Lines property of TMemo, Items of TListbox and TComboBox and other VCL components.
So can use
cbList.Items := StringList …
3
votes
Profiler and Memory Analysis Tools for Delphi
Having used both GpProfile and AQTime I have found both to be effective at finding what method call is causing a bottle neck.
However AQTime can also tell me what line of code is causing th …
2
votes
Can I overload operators for my own classes in Delphi?
The "traditional" method of copying classes in Delphi is by overriding the "AssignTo" method of TPersistant. This usually takes the form of
TSubclass(Dest).Field1 := Field1;
TSubcl …
3
votes
What religion is Delphi?
High Anglican (Episcopalian)- Pascal is Catholic (as per skamradt). Object Pascal has "borrowed" stuff from other religions, but it still looks a lot like Catholicism.
…
4
votes
What Simple Changes Made the Biggest Improvements to Your Delphi Programs
Make intelligent use of SetLength() for strings and arrays. Optimize initialization with FillChar or ZeroMemory.
Local variables created on stack (e.g. record types) are faster than heap al …
4
votes
Dictionary (from Python) component for Delphi?
There is a THashedStringList class (subclassed from TStringList) "hidden" in IniFiles.pas that can significantly speed up searching in a string list based dictionary.
…
0
votes
How can I increase memory security in Delphi?
Would it be possible to load the decrypted XML into an array of char or byte rather than a string? Then there would be no copy-on-write handling, so you would be able to backfill the memory with #0 …
1
vote
Dynamically creating a sub-menu in Delphi
Just an aside (I know you have found the cause)
Why are you using lNewMenuItems: array[0..flagCount] of tMenuItem; instead of using a singe variable?
Also, is there a reason for not …
1
vote
How can I monitor / limit network traffic used by my app?
If you mean by the system as a whole (and not the application - it's a bit unclear), you could look at WinPCap. There are Delphi wrappers availab …
1
vote
SetRoundMode(rmUp) and rounding “round” values like 10, results in 10,0001 how come?
The Ceil() : Integer function should give you the answer you want for values > 0. If < 0 you may need to use floor() instead, depending on desired behaviour.
…
4
votes
How to prevent a Delphi MDI application from showing the caption of the maximized child
haven't had a chance to test this, but:
in the child OnResize, test for WindowState = wsMaximized.
If it is, then set Caption := ''
If not, set caption as required - you will need to need t …
3
votes
Is it possible to install multiple instances of the same delphi service application?
You haven't made it clear what you have tried to change in the TService subclass.
Have you added a "BeforeInstall" handler?
Something like:
procedure TServiceMain.Se …
0
votes
Passing parameters to a delphi TFrame
I would normally add a public, non-virtual "Initialise" or (Initialize to Americans) procedure which requires all parameters to be provided. This will then set the properties.
Make the pro …
