are you by anychace letting your app go into a loop checking if the apps running with the Detect MS Office Tip of which you speak(I havn't seen it) does your code look something like this
Code:
Private Function DetectAccess() as Boolean
'returns True If access is running
End Function
Private Sub WaitForAccessToFinish
Do While DetectAccess
Loop
End Sub
if so add a doevents line to your loop so it looks like this
Code:
Private Function DetectAccess() as Boolean
'returns True If access is running
End Function
Private Sub WaitForAccessToFinish
Do While DetectAccess
DoEvents
Loop
End Sub
Hope this helps.