Interactive Graphing from Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form which charts an interactive graph when the user makes selection
of graph data from combo boxes. The row source data is being read from
tables and queries and gets filtered according to the user selection of
recordset. It seems to work for the most part but every now and then my
graph data gets corrputed and starts showing hap-hazard lines. If I double
click on the graph and toggle between the data source as being row and
column, it gets fixed. I have not idea why this happens, but it sure is
getting very annoying. Any ideas??
 
It sounds like you have a requery in your code when a user makes a selection
from the comboboxes and for some reason the requery isn't working or is
getting bypassed under certain conditions. Look at the logic of your code.
 
Back
Top