f Disk,
Do you mean a msgbox or a form you created that is popup?
If it is the latter, you should be able to set it to pop-up, & modal = no.
Private Sub Command296_Click()
DoCmd.OpenForm "tblService", acNormal, , , , acHidden
End Sub
The code shown opens a form in hidden mode. You can...