H
Haggr1 via AccessMonster.com
I use the following event to run an update and append query w/o confirmation
messages.. The event can take a few minutes especially when other users are
logged on. I need to show a "real" "progress bar" so the user running that
event can see the progress. I have been though all the help on progress bars
and just can seem to grasp it. I need help. Thanks
Private Sub Command49_Click()
On Error GoTo Err_Command49_Click
With CurrentDb
.Execute "qrystyleappendstyle", dbFailOnError
.Execute "qrystylegary", dbFailOnError
End With
Exit_Command49_Click:
Exit Sub
Err_Command49_Click:
MsgBox Err.Description
Resume Exit_Command49_Click
End Sub
messages.. The event can take a few minutes especially when other users are
logged on. I need to show a "real" "progress bar" so the user running that
event can see the progress. I have been though all the help on progress bars
and just can seem to grasp it. I need help. Thanks
Private Sub Command49_Click()
On Error GoTo Err_Command49_Click
With CurrentDb
.Execute "qrystyleappendstyle", dbFailOnError
.Execute "qrystylegary", dbFailOnError
End With
Exit_Command49_Click:
Exit Sub
Err_Command49_Click:
MsgBox Err.Description
Resume Exit_Command49_Click
End Sub