I've read all the threads about this subject but still can't seem to make it work for me.
My form accepts input from user to run a query and reports. To inform the user of the progress of the processing, there's a textbox which is given a value of the status. The form has the following with time interval set to 400.
Private Sub Form_Timer()
If Me!txtStatus <> "" Then
Me!txtStatus.Visible = Not Me.txtStatus.Visible
End If
end sub
But when a query is running and a report is being prepared for previeving through separate modules, the textbox doesn't flash. I sensed it has something to do with SetFocus but don't know for sure or how to make it work.
Would greatly appreciate any help/thoughts.
Thanks.
My form accepts input from user to run a query and reports. To inform the user of the progress of the processing, there's a textbox which is given a value of the status. The form has the following with time interval set to 400.
Private Sub Form_Timer()
If Me!txtStatus <> "" Then
Me!txtStatus.Visible = Not Me.txtStatus.Visible
End If
end sub
But when a query is running and a report is being prepared for previeving through separate modules, the textbox doesn't flash. I sensed it has something to do with SetFocus but don't know for sure or how to make it work.
Would greatly appreciate any help/thoughts.
Thanks.