Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
176 views

How to make an Excel-Like Sort By A, Then By B in a TObjectList<> using multiple comparers

I have just started to use generics, and I am currently having a problem doing sorting on multiple fields. Case: I have a PeopleList as a TObjectList and i want to be able to make an Excel-like ...
5
votes
8answers
458 views

How noticeable is the difference of performance among TList, TObjectList, and plain array, if it could be estimated?

*Summarization: Please check the knowledgeable comments from the Delphi experts. Specifically for me, I would try to use old TList/TObjectList as David suggested, and use hard-cast and ...
4
votes
2answers
398 views

Delphi Remove an object from a TObjectList

I have a TObject list (FileEventObjects := TObjectList.Create(True);) containing one or more objects. The objects need to stay in the list until they are processed. (The object list exists for the ...
3
votes
3answers
408 views

Delphi: Correct way to store objects fetched from TObjectList

This example is of course simplified, but basically I have a main form that triggers another form (frmSettings) with function Execute(var aSettings: TSettings):Boolean TSettings is my own object ...
3
votes
3answers
871 views

Delphi trouble: Sorting a Tobjectlist<>

I want to sort my generic tobjectlist using the built-in sort method. here is what I do: //create the list object myList := TObjectList<MyType>.Create(false); [...] //populate the list ...
3
votes
2answers
276 views

On Joining TObjectlists

I think i need a nudge in the right direction: I have two Tobjectlists of the same datatype, and i want to concatenate these into a new list into which list1 shall be copied (unmodified) followed by ...
2
votes
6answers
2k views

extract an object from a TObjectList

I have a TObjectList with OwnsObjects = true. It contains quite a few objects. Now I want to remove the object at index Idx from that list, without freeing it. Is the Extract method the only option? ...
1
vote
2answers
214 views

How to inspect the content of non-generic TObjectList when debugging?

Summarization: 1. Manual typecast when debugging, as LachlanG and Ken pointed out. 2. Make use of the concept of Debugger Visualizers introduced since Delphi 2010. 3. Switch to generics counterparts. ...
1
vote
3answers
328 views

Can I pass in one function for TObjectList.IndexOf, and another function for TObjectList.Sort?

Summarization: TList.IndexOf (TList defined in the unit Classes.pas) iterates linearly through the contained items, and compares the reference. TList.IndexOf (TList defined in the unit ...
1
vote
3answers
2k views

Delphi: how to use TObjectList<T>?

I need to understand how to use the generic Delphi 2009 TObjectList. My non-TObjectList attempt looked like TSomeClass = class(TObject) private FList1: Array of TList1; FList2: Array of TList2; ...
1
vote
1answer
792 views

Delphi: generics and TObjectList

I've created a class like TMyClass = class(TObject) private FList1: TObjectList<List1>; FList2: TObjectList<List2>; public end; Now, I want a method FillArray(Content);, which ...