Question Access 97 - PopUp Windows Problem

CeCe

Registered User.
Local time
Today, 12:15
Joined
Oct 26, 2010
Messages
14
I am using Access 97. The application that I am using is working fine on everyone else's CPU but mine. There doesn't seem to be anything wrong with the application but the Pop-Up windows closes the entire application once I click on the Apply button. Can anyone tell me if there is some switch that I need to change on my CPU to make it work properly or a suggestion of what may be happening to cause this problem on only my system. I would really appreciate any answers you can send me as it is very cumberson problem with having to work with the application.

Thanks much in advance for your help.
 
what do you mean?

the pop-up window closes the app?
 
I click on the button for the pop-up window to appear, it opens, I check the items that apply, I click on the apply button (which is suppose to bring me back to the main screen) instead the entire application closes. It only happens on my cpu. It works properly on all other cpu. Yes it closes the app.
 
This is the code ....

Private Sub cmdClose_Click()
On Error GoTo Err_cmdClose_Click
Forms![MainForm]![MainForm_TabEquipLegal_SubLegalList].Form.Requery
DoCmd.Close acForm, "PopUp_LegalSelectionList"
Exit_cmdClose_Click:
Exit Sub
Err_cmdClose_Click:
MsgBox Err.description
Resume Exit_cmdClose_Click

End Sub
 
Thanks for all of your help... I got the answer...
 

Users who are viewing this thread

Back
Top Bottom