Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
169 views

What is an efficient way of deleting a large block of items from the start of a TList in Delphi

Delete (0) from a TList is expensive because all the subsequent items need to be moved down. If I need to delete a large number of items from the start of an even larger list what's the fastest way?
7
votes
6answers
2k views

Delphi TList of records

Hi I need to store a temporary list of records and was thinking that a TList would be a good way to do this? However I am unsure how to do this with a TList and was wondering if this is the best was ...
6
votes
4answers
800 views

Why is TList.Remove() producing an EAccessViolation error?

Why EAccessViolation is raised when executing the code below? uses Generics.Collections; ... var list: TList<TNotifyEvent>; ... begin list := TList<TNotifyEvent>.Create(); ...
5
votes
3answers
181 views

How do I search a generic TList<T> collection? [closed]

Possible Duplicate: How can I search a generic TList for a record with a certain field value? I have a collection of TList<TActivityCategory> TActivityCategory has a Name property ...
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 ...
2
votes
2answers
166 views

tcxGrid using TList as a DataSource

I'm wondering if it's possible to bind a TList object as a cxGrid datasource. So what I have is a TList object containing various objects that i do not need to persist. I want a sort of GridView to ...
2
votes
3answers
273 views

Delphi 2010: Confusing generic type TList scenario? Pass by value or reference?

I encountered a problem some days ago while working with Generic TList in the middle of a project. I tested it in a simple test project and got the same problem. Here is the exact code: type ...
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
1answer
103 views

Delphi XE2 TPointerList usage

I have a following problem trying to compile some components in XE2. These components were not prepared for XE2, but I'm trying to compile them anyway. Within a component it is declared like FList ...
1
vote
1answer
112 views

Open NERDTree and Tlist above each other in Vim

I'm looking for a way to (automatically) open NERDTree and Tlist on the left side directly above each other, so that each plugin takes up half of the screen height. I already found this question, in ...
1
vote
1answer
179 views

How do I add records of type record to a TList<>?

I have a treelist of data. I'm looping through the tree list to match certain records and adding them to a generic TList<>. This works except all record values become the last one added for all ...
1
vote
1answer
219 views

Using Angle Brackets (I have seen people using TList<PSomething>)

I see people declaring their TLists like MyList : TList<PSomeType>; Whereafter when they create it, they do MyList := TList<PSomeType>.Create; So I asume that by doing that, they ...
1
vote
2answers
243 views

Delphi: Problems with TList of Frames

I'm having a problem with an interface that consists of a number of frames (normally 25) within a TScrollBox. There are 2 problems, and I am hoping that one is a consequence of the other... ...
1
vote
1answer
348 views

Delphi's TDictionary, my Value objects are inserting as null

I'm using Delphi 9's TDictionary generic class. My TDictionary looks like this: g_FileHandlers : TDictionary<String, TList<String>>; And, so I initialize the TDictionary like so: ...
1
vote
1answer
335 views

How to sort a Typed Tlist

I have a number of Typed TLists which I am having problems getting to sort Normally, for an untyped TList, I would have a function such as: function SortByJob(Item1: Pointer; Item2: Pointer): ...
1
vote
1answer
210 views

Result := TList<Something>.Create

I'm trying to write a Delphi function that returns a TList<TMyType> object. But I see that Result := tlist_instance doesn't work. What's the function to do my work?
1
vote
1answer
498 views

Replacement for TList in Delphi Prism

I am migrating an application written in Delphi 2007 to Delphi Prism, which is the best option to replace the TList class? Thanks in advance. Bye.
0
votes
2answers
252 views

Deleting TList within a TList

I am trying to free Tlist within a Tlist in a onDestroy event and FastMM4 is raising an access violation error. Here is the code snippet. procedure TSignalFrm.FormDestroy(Sender: TObject); var x,y: ...
0
votes
1answer
499 views

Pass array (or TList) from C# code behind to external javascript?

I need to pass a list (or array) of IP addresses and other information from C# code behind to the javascript function, which is in the external .js.. Also, this list may be long (1000+ items) .. What ...
0
votes
2answers
215 views

Strange EListError occurance (when accessing variable-defined index)

I have a TList which stores some objects. Now I have a function which does some operations on that list: function SomeFunct(const AIndex: integer): IInterface begin if (AIndex > -1) and (AIndex ...
-2
votes
1answer
133 views

Why do I get an invalid pointer in the TListSortCompare function when calling sort on a TList? [closed]

I'm adding some pointers to a TList object: procedure DoStuff(); var list : TList; i : integer; newValue : PMyStructure; begin list : TList.create(); // Just an example of value adding ...