vote up 0 vote down star

I need a class similar to TStringList that could manage name & value pairs, but the value part is variant. Or perhaps it has a property like TStringList.Object but holds variants instead of objects.

Could anyone please point me to a free or open source implementation? I use Delphi 7.

Thank you.

flag
What Delphi version are you using? D2009 and up has the generic TDictionary class which you can use for this. – Michael Madsen Oct 3 at 19:51

4 Answers

vote up 1 vote down check
PVariantRec = ^TVariantRec;
TVariantRec = record
  Value : Variant;
end;

var
  lItem : PVariantRec;
  lMyStringList : TStringList;

lMyStringList := TStringList.Create;
lMyStringList.Sorted := true;
lMyStringList.OwnObjects := false;

//add
New(lItem);
lItem.Value := 'zzz';
lMyStringList.Add('name', TObject(lItem));

//remove
lItem := PVariantRec( lMyStringList.Objects[0] );
Dispose(lItem);
lMyStringList.Delete(0);
link|flag
Is it safe to do TObject(lItem) ? – bejo Oct 4 at 7:33
Thats why I recommend a TObject to wrap the Variant... – Uwe Raabe Oct 4 at 9:49
Yes, its safe. stackoverflow.com/questions/367130/… – inzKulozik Oct 4 at 10:10
vote up 4 vote down

You have not given the Delphi version this is intended to be used with, but starting with Delphi 2009 you can use a TDictionary<string, Variant>.

link|flag
vote up 3 vote down

If you have Delphi 2009 or 2010, you can use the TStringList<T> class in DeHL to create a TStringList<Variant>. (You could also use TDictionary, but TStringList has a lot of extra functionality that you might not want to lose.)

link|flag
vote up 3 vote down

You can derive from TStringList and use the Objects property to hold a wrapper object for a variant.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.