dennis wrote:
> var sl:TStringlist;
>
> begin
>
>   sl:=TStringlist.create;
>
>   sl.add('something');
>   
       ndx := sl.add('something');
>   sl.Objects[sl.count-1]:=MyCheckbox;  //<-- reference here where
>   
      sl.Objects[ndx]:=MyCheckbox; //<-- reference here where
> MyCheckBox:TCheckBox
>
>  
>   
     or
     sl.Objects[sl.add('something')]:=MyCheckbox; //<-- reference here 
where

> TStringlist it is an amazing object that doesn't exist with so many methods
> in other environments!
>
>  
>
> dennis
>
>
>
> [Non-text portions of this message have been removed]
>
>
>
> ------------------------------------
>
> -----------------------------------------------------
> Home page: http://groups.yahoo.com/group/delphi-en/
> To unsubscribe: [email protected]! Groups Links
>
>
>
>   
> ------------------------------------------------------------------------
>
>
> No virus found in this incoming message.
> Checked by AVG - www.avg.com 
> Version: 9.0.733 / Virus Database: 271.1.1/2668 - Release Date: 02/04/10 
> 12:35:00
>
>   


Reply via email to