How can I show a msgbox with the text "Update in progress! Please wait a while", when I execute the following make table querye on form load?
Best regards
Morten
Code:
Private Sub Form_Load()
'Turns the Access warning messages off
DoCmd.SetWarnings False
DoCmd.OpenQuery "q_tblUdtræk2"
'Turns the Access warning messages back on
DoCmd.SetWarnings True
MsgBox "MDM Syndicator indlæst med " & DCount("*", "tblUdtræk") & " record(s)" & vbNewLine
End Sub
Best regards
Morten