Behavior of events

S

SC

Can someone help me understand the behavior that is happening here?

If I put the below code in the onClick event handler of a label, the last
line of code runs before the graphs have requeried. However, if I put the
same code in an onChange event of a combo box, the image is not hidden until
the graphs have completed the requery.

Me.GraphTransfersTotalNQC.Requery
Me.GraphTransfersTotalNQCDay.Requery
me.imageProcess.visible = false
 
Top