I have a user form I made via VBA code that populates a word document next to bookmarks I placed. I wanted a way to clear the form using a command button so then you could click another command button to relaunch the form to use it again and again. However, the reload only works once or sometimes twice. The more times you use eventually it just closed the document without reopening it. Is there something I can add to the reload code to keep it working consistently? I should say it works fine on one computer and wonky on another. Wondering it could be lag or delay of the computer in processing the code? I also do not want to be asked If want to discard changes and reload the recent version. I do not wish to save anything how can I get it work as I would like?

Private Sub Reset_Click()
ScreenUpdating = False
ActiveDocument.Reload

End Sub