Hi all,

I am a newbie in using the third party helper (.ocx) and currently I am trying to use the ChartSpace to create a graph from the datagrid.

The data loads up and projected correctly inside the chart. Then I create a double click event for the chart. Following is the code that is used to check for the value inside the chart:

<code>
MsgBox Me.ChartSpace1.Selection.GetValue(chDimValues)
MsgBox Me.ChartSpace1.Selection.GetValue(chDimCategories)
</code>

This work if I double click that portion once. Means that after I double click and go to the result page, go back and never click the same portion again instead clicking on the other portion of the chart. But if I double click the same portion again, it prompts me with error 438: The object is not supported.

What is should I do to avoid the error to come up when the user double click on the same portion?

As I keep on looking on how to clear off the selection but I didn't get a clue about it.

Thank you in advance for all your help.

-ncuz-