Link to home
Start Free TrialLog in
Avatar of bor061297
bor061297

asked on

Add Method Override

I would like to override Add Method for ListBox.

Or to be more specific:

How could I make a new ListBox component, that will
act like this:

   NewListBox.Items.Add('12345');
   s := NewListBox.Items[0];
   // after this s contains '54321'

Also I need override for Insert method in same manner.
Avatar of michaue
michaue

May I ask why you want to do this, then I would probably be able to give you a good answer ...
ASKER CERTIFIED SOLUTION
Avatar of Jacco
Jacco
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bor061297

ASKER

Adjusted points to 100