cpopolo Posted July 11, 2007 Report Share Posted July 11, 2007 Hi, new here, but past experience with ChartFX... I'm trying to make it work in an MSAccess application, I see the objects fine, everything compiles clean, but then when I go to load the Values for the scatter plot I am getting the error message "The setting you entered isn't valid for this property". Code is below. "Value" is the default property for most MSAccess objects, I wonder if this is why I get an error on the >>> shown line below. Does the order of my DLLs make a difference? The recordset rs contains strictly single precision numerics, is there a strong type requirement I'm missing? The ochart object is on a form in design time, it's not instantiated at runtime... Thanks in advance... Me.ochart.Gallery = Gallery_Scatter Me.ochart.OpenData COD_Values, 1, nPoints Me.ochart.OpenData COD_XValues, 1, nPoints Me.ochart.DataSourceSettings.DataType.Item(0) = DataType_Value Me.ochart.DataSourceSettings.DataType.Item(1) = DataType_XValue While Not rs.EOF i = i + 1 Me.ochart.xvalue(0, i) = rs.Fields(1) >>> Me.ochart.Value(0, i) = rs.Fields(2) rs.MoveNext Wend Me.ochart.CloseData (COD_Values) Me.ochart.CloseData (COD_XValues) Quote Link to comment Share on other sites More sharing options...
Frank Posted July 11, 2007 Report Share Posted July 11, 2007 What version of Chart FX is this? It is definetly not Chart FX for VS 2005. did you post in the right forum? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.