R
Rick A.B.
I've been playing with Windows 7 RC and Access 2007. I've loaded a
secured split database with the back end on the Network. When I go to
close my main form with out making any changes by clicking the close
button it takes about 15 seconds for the form to close. If I click
the X in the upper right corner it closes immeadiatly. I have the
following behind the close button.
Private Sub Close_Click()
On Error Goto Err_Close_Click
DoCmd.Close
Exit_Close_Click:
Exit Sub
Err_Close_Click:
MsgBox Err.Description
Resume Exit_Close_Click
End Sub
Is there something I'm missing? Is there some other event that runs
when the form closes without being dirty? There is nothing in the
UnLoad event. All references are good. I've compiled with no
errors.
Rick
secured split database with the back end on the Network. When I go to
close my main form with out making any changes by clicking the close
button it takes about 15 seconds for the form to close. If I click
the X in the upper right corner it closes immeadiatly. I have the
following behind the close button.
Private Sub Close_Click()
On Error Goto Err_Close_Click
DoCmd.Close
Exit_Close_Click:
Exit Sub
Err_Close_Click:
MsgBox Err.Description
Resume Exit_Close_Click
End Sub
Is there something I'm missing? Is there some other event that runs
when the form closes without being dirty? There is nothing in the
UnLoad event. All references are good. I've compiled with no
errors.
Rick