|
Question : Access Form Freezing/Locking Up
|
|
Ok, so I posted my db as that is probably the only way you can help me is to look at it. The forms that have the issue are AS9100RequirementAdd and CMMIRequirementAdd. So for me, being my first db, this is a complicated form, but the idea is that I need to be able to store multiple functions, people as roles, and documents linked to this requirement and these two forms are the way to do it. If I get to the form via my switchboard it works just fine, but if I don't get to it via the switchboard, then the form locks up/freezes as soon as I click the Store Person as Role command button. I have no idea what the issue is, as I have stepped into the VBA code as it is running and it gets through it fine. As I said at least to me this is a complicated form, especially with all the code it has in the background, so if you have any questions about the purpose or functionality of anything let me know. I should be at my computer all day, and johnny on the spot with the responses, as I am trying to get this issue solved today to meet a deadline. Thanks in advance for your help. - Michael
|
|
Answer : Access Form Freezing/Locking Up
|
|
< >
Open a module in design view, click Debug on the menu, and then compile.
<>
Well then it's not really freezing from an Access perspective, but a user one. Sounds like you have code that is locking the form.
<>
Correct and from what you state in the above, there is no code running when it freezes.
<>
1. I would look at the OnOpen and OnLoad events and see if there is any code related to the switchboard.
2. I would see if the switchboard is doing the open with any type of parameters (opening it with a where clause to filter data or in a certain mode, such as dialog).
If it works one way and not the other, it should be fairly easy to pin down why.
JimD.
|
|
|
|