Tagged Questions
4
votes
2answers
101 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:
...
2
votes
1answer
71 views
Delphi TCollection - Possible to prevent changing items in run-time?
Using delphi 7, I have a TCollection/TCollectionItem set of descendents. They are intended to be set up in Design-time only, and should never be modified in Run-time. How can I do this? Design-time ...
2
votes
2answers
136 views
Saving vcl objects references in dephi with Tcollection
I am using delphi 2009 and VCL components. I have created a collection called
TStreets made of items TStreet which has just two private fields. Now I need to add
to Tstreet class another ...
1
vote
2answers
69 views
Serialization of a TCollection which is not declared in a TComponent?
Is it possible to serialize a TCollection which is not encapsulated in a TComponent ?
For example, I have a custom TCollection. I can't use TMemoryStream.WriteComponent() on my TCollection ...
1
vote
1answer
72 views
Converting collections to 'named components' - compiler error
This is specifically related to the accepted answer of another question I asked. During conversion of my already-existing collections to this new 'named collection item' structure (as explained in the ...
1
vote
3answers
218 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
147 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
3answers
248 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 ...
1
vote
1answer
229 views
return TCollection or array of objects from Dll
I tried to return from dll function my own object (derived from TCollection). I used FastMemoryManager, but without success... So I tried to return dynamic array of some objects.
Length of the array ...
1
vote
1answer
227 views
delphi TCollection count not increasing after Add
i have the types
TNotifyReply = class(TCollectionItem)
TNotifyReplylist = class(TOwnedCollection)
NotifyReplylist := TNotifyReplylist.Create(self, TNotifyReply);
After calling this function (Any ...
1
vote
1answer
390 views
TCollection PropertyEditor with editable Columns
for my own TCollection descendant I want to extend the collection property editor. I want to see more columns for other properties of my TCollectionItem. And I am a lucky because it is pretty easy. ...
0
votes
0answers
109 views
ComboBoxes In TCollection dosen't meet BidiMode message
I have writen a component named TMy_Panel.
It inherites from a Panel(TPanel) and after that some TComboBoxes(TComboBox) will include into the panel as children.
The component was implemented by ...
0
votes
3answers
481 views
delphi 7: How can I find item of object collection?
how can I find by name and get the Item in a collection of object ?
procedure TfoMain.InitForm;
begin
// Liste des produits de la pharmacie 1
FListeDispoProduit := ...
0
votes
1answer
196 views
Using TCollection with an already-defined class
(Note: This is somewhat related to my last question).
I am new to using TCollection in Delphi, and am still wrapping my head around the various ways to handle one-to-many class/property-item ...