Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
115 views

How do I reorder items in a TCollection?

I am trying to implement MoveItemUp and MoveItemDown methods that move a selected row up or down one index within a TCollection. The following code added to my subclass of TCollection does not work: ...
3
votes
2answers
280 views

Change the label of a TCollectionItem in the Delphi editor

A component I am working on uses a TCollection to hold links to other components. When the items are edited in the designer their labels look something like this: 0 - TComponentLink 1 - ...
2
votes
1answer
161 views

TCollectionItem and destructor method in delphi

Hey, Could anyone tell me if the implementations of the Destructor in the following example are correct and the same? TTaskItem = class (TCollectionItem) private FTask: TTask; public ...
1
vote
3answers
258 views

Creating a component with named sub-components?

I need to know the basics behind making a component produce and manage sub-components. I originally tried this by creating a TCollection, and tried to put a name on each TCollectionItem. But I learned ...
1
vote
1answer
150 views

Getting the index # of a TCollection Item when added to a TCollection

I know that when I add a collection item to a collection, the index is zero-based. I would like to make it one-based and show the value in a property called Id. Can someone tell me how I can go about ...
1
vote
2answers
113 views

Recursive read of TCollection

I'm very bad with recursion, never used it before. I know the theory of it .. not that that helps :)) For my problem i have a structure of TCollection that contains TCollection and TCollectionItem etc ...
1
vote
3answers
259 views

Is it possible? TCollection descendant to implement storage of TPanel containers with arbitrary content

I'm new to component development in Delphi, therefore want to know, is it possible to implement my task at all. I need to create a visual component (user control) based on TScrollBox, which will ...
0
votes
1answer
77 views

TCollectionItem not initializing default property values

I've been fighting this crazy problem for hours and have gotten nowhere. I have this problem in two completely different projects using a TCollection. When a new collection item is added, I need to ...
0
votes
1answer
189 views

Inheritance of TCollectionItem

I'm planning to have collection of items stored in a TCollection. Each item will derive from TBaseItem which in turn derives from TCollectionItem, With this in mind the Collection will return ...