J
Jake F
I have a report w/ sub report based on the same query. I use a combo box and
filter based on the value selected in the combo box. Here is my coding for
it. The problem is that the value is cleared before the subreport can load.
Is there a way to tell it to load the subreport and then clear the box or do
I need to put the clear somewhere else? Thanks.
Private Sub Combo13_AfterUpdate()
DoCmd.Hourglass (hourglassOn)
DoCmd.OpenReport "rptScoreStats", acViewPreview
Me!Combo13.Value = Null
DoCmd.Hourglass (Hourglassoff)
End Sub
filter based on the value selected in the combo box. Here is my coding for
it. The problem is that the value is cleared before the subreport can load.
Is there a way to tell it to load the subreport and then clear the box or do
I need to put the clear somewhere else? Thanks.
Private Sub Combo13_AfterUpdate()
DoCmd.Hourglass (hourglassOn)
DoCmd.OpenReport "rptScoreStats", acViewPreview
Me!Combo13.Value = Null
DoCmd.Hourglass (Hourglassoff)
End Sub