Thanks to lots of help from the great people here, I've got an access DB with a "master" form. When the DB is opened, the master form opens - the user enters a case number and 25 different documents are generated (data from Access goes to word templates) and all are saved to a specific directory on our network. (the docs are actually numbered 1-25) This takes several minutes to complete. I currently have a message box that pops up when it's complete and says "Documents are ready for review". I'd really like some way to keep my users apprised of the progress, otherwise they're really impatient and start trying to close things, etc...
Each document is it's own sub and all are called from the first sub:
Any ideas?
Each document is it's own sub and all are called from the first sub:
Code:
Private Sub ClosingContracts_Click()
On Error GoTo ErrorHandler
DoCmd.SetWarnings (False)
Call OpenMergedDoc1
Call OpenMergedDoc2
Call OpenMergedDoc3
Exit Sub
ErrorHandler:
MsgBox "Error #" & Err.Number & " occurred. " & Err.Description, vbOKOnly, "Error"
Exit Sub
End Sub
Any ideas?