Hi,

I need to access a list of attributes as follows.

I'm drawing a curve named "CurveName". With Curvename I need to access the curve color, the data symbol etc.
I tried this:

Code:
Dim cllCurveAtt as new cllCurveAtt

sub SetAtt
     cllCurveAtt.Add(CurveName, "Color.Red")
     ......
end sub
If I then want to refer to the curve color through cllCurveAtt(CurveName) I get an error because "Color.Red" is not a system color, it should be Color.Red without the quotes. But if I remove the quotes in the assignment THAT causes an error because since CurveName is a string, that color thing should also be convertable to a string. Catch 22.
How can I do this in another way?

Thanks,

Jan Didden