At work we have upgraded to Office 2007. Our users are getting an error message at random while using Excel and Word. “Microsoft Office (Appname) has encountered a problem and needs to close. We are sorry about the inconvenience.” All computers are have the same software and all updates loaded. This error appears completely at random while the user is in the middle of working.
I am also having this message pop up in some of my Access databases but not at random. I will give you an example. I have a Main Menu form and Form 1 and Form 2. The Main Menu has two buttons the first opens Form 1 and closes the Main Menu, and the second opens Form 2 and closes the Main Menu. They are both coded the same way. Find an example of the code below.
=============== =============== =============== =============
Private Sub Button_1_Click( )
DoCmd.OpenForm "frmOne", acNormal
DoCmd.Close acForm, "MainMenu”, acSaveNo
End Sub
=============== =============== =============== =============
If anyone has ran into any of these issues please help.
I am also having this message pop up in some of my Access databases but not at random. I will give you an example. I have a Main Menu form and Form 1 and Form 2. The Main Menu has two buttons the first opens Form 1 and closes the Main Menu, and the second opens Form 2 and closes the Main Menu. They are both coded the same way. Find an example of the code below.
=============== =============== =============== =============
Private Sub Button_1_Click( )
DoCmd.OpenForm "frmOne", acNormal
DoCmd.Close acForm, "MainMenu”, acSaveNo
End Sub
=============== =============== =============== =============
If anyone has ran into any of these issues please help.
Comment