G
Guest
I have 5 graphs all of which are in an active window, however I only want one
of them to update every ten seconds, the other 4 can update every minute.
Each graph sucks in about 6000 records each so I am trying to cut down on
unnecessary hits to the server and network traffic. I have simply put in the
OnTimer event the following...
Private Sub Form_Timer()
Dim Graph As Control
Set Graph = Me!graphAll
Graph.Requery
Set Graph = Me!graph1
Graph.Requery
Set Graph = Me!graph2
Graph.Requery
etc....
The "graphAll" needs to update every 10 seconds. The others every minute on
the whole minute. I am not sure where to start with this. Any help is
appreciated.
of them to update every ten seconds, the other 4 can update every minute.
Each graph sucks in about 6000 records each so I am trying to cut down on
unnecessary hits to the server and network traffic. I have simply put in the
OnTimer event the following...
Private Sub Form_Timer()
Dim Graph As Control
Set Graph = Me!graphAll
Graph.Requery
Set Graph = Me!graph1
Graph.Requery
Set Graph = Me!graph2
Graph.Requery
etc....
The "graphAll" needs to update every 10 seconds. The others every minute on
the whole minute. I am not sure where to start with this. Any help is
appreciated.