I have a problem with MSChart and mouse pointer control. I have a button that creates a chart. When I click the button, I can cause an hourglass to appear while I build the chart. When I'm done building the chart, I can make the pointer revert to normal arrow as long as I don't move the mouse over the chart area. But, if I move the mouse over the chart area while I'm building the chart, the mouse will not revert back to the normal arrow. I have to move the mouse slightly, then it shows the arrow. Here's where I call DrawTheGraph which basically causes MSChart1 to get all the info it needs to draw the graph. While I'm drawing the graph, the mouse shows the hourglass anywhere on the screen, but when the program gets back here, it doesn't show the arrow if I leave the mouse on the chart. I watched the value of .MousePointer, and it shows 1, but the mouse shows the hourglass - until I move it.
What am I missing?
Thanks,
Gary
Call DrawTheGraph
With MSChart1
.MousePointer = VtMousePointerArrow
End With
Screen.MousePointer = vbArrow
End Sub
What am I missing?
Thanks,
Gary
Call DrawTheGraph
With MSChart1
.MousePointer = VtMousePointerArrow
End With
Screen.MousePointer = vbArrow
End Sub