Delphi VCL class for a list of pointers.

learn more… | top users | synonyms

1
vote
3answers
139 views

Best way to keep an array sorted when adding/deleting cells

Version of Delphi used: 2007 Hello, I have an array of Tecord TInfo = Record Name : String; Price : Integer; end; var Infos : Array of Tinfo; I was looking for a way to sort my Infos array and ...
1
vote
1answer
102 views

Delphi typcast tlist items C++ approach

Hi I have one question regarding some type casting approaches. I am translating some Delphi files to C++. I have delphi declaration of class which is derived from TList and it's a base class for other ...
1
vote
1answer
90 views

Delphi2006 - Is there TList with TMultiReadExclusiveWriteSynchronizer?

I have external application that is multithreaded and this app is using my custom dll to do some things from that threads. In this dll I have 2 functions that read from and write some data to TList. I ...
4
votes
1answer
134 views

Best way to allocate and deallocate a dynamic list in Delphi?

I'm new to Delphi and trying to figure out how to deal with memory management. I have a class, TFileData, that is dynamically allocated and put into a list. Every time I reload data from files I need ...
5
votes
2answers
244 views

Delphi TList in multithreading

Is it safe to use TList in a multithreaded application which is accessed by all the other threads but only one thread writes to it. the scenario is A unique TList to each thread which only that ...
0
votes
1answer
71 views

Porting Delphi TList.Sort to PHP

I need to port Sort procedure from TList to receive an PHP Array procedure TList.Sort(Compare: TListSortCompare); begin if (FList <> nil) and (Count > 0) then QuickSort(FList, 0, Count ...
2
votes
2answers
392 views

Removing duplicates from List

I wrote this function to remove duplicates from a TList descendant, now i was wondering if this could give me problems in certain conditions, and how it does performance wise. It seems to work with ...
1
vote
1answer
180 views

How can read grouped data from a TList<> in Delphi

In C# Linq would make this super-easy but I am new to using Lists in Delphi and I need some advice. I have a list of objects stored as TList<IMyInterface> with each object essentially being a ...
2
votes
5answers
283 views

How do I free the contents of a TList?

I have this code in Delphi 4. I created 10 objects of type T_Charge (see below), which I added to a TList, named myList. The T_Charge type has references to three objects of type T_Platte (see below). ...
1
vote
2answers
224 views

delphi tlist object method calling

all, In Delphi, I created a simple class called T_Test (see below). T_Test = class(TObject) private F_Int : Integer; public constructor Create(inInt: Integer); destructor Destroy; override; ...
4
votes
1answer
1k views

Viewing the Process Tree - tlist/tasklist

Starting windows xp the tlist was changed by the tasklist. tlist has the option \t,which permitted to query parent/child process relationship does similar option exist in tasklist? Thank you
2
votes
1answer
61 views

how can I make the Tlist vi plugin to show functions on .lib files?

I have a bunch of shell script files with .lib as the name extension and Tlist is not picking up the functions unless the files are renamed using .sh as extension. How can I have Tlist the .lib files ...
3
votes
2answers
497 views

Delphi: Types other than Integer for indexing TStringList items

Arrays can be indexed using user-defined enumerated types. For example: type TIndexValue = (ZERO = 0, ONE, TWO, THREE, FOUR); var MyArray: array[Low(TIndexValue) .. High(TIndexValue)] of String; ...
1
vote
1answer
724 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 ...
7
votes
6answers
390 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?
2
votes
1answer
913 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 ...
5
votes
3answers
1k views

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

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 ...
3
votes
2answers
1k 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 ...
1
vote
1answer
555 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 ...
2
votes
3answers
521 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 ...
12
votes
6answers
11k 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 ...
1
vote
1answer
414 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 ...
0
votes
2answers
396 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: ...
5
votes
8answers
1k 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 ...
0
votes
1answer
689 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 ...
1
vote
2answers
373 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
491 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
1k 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): ...
0
votes
2answers
413 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 ...
1
vote
1answer
579 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.
7
votes
4answers
1k 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(); ...
2
votes
6answers
3k 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? ...