Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to unload a userform when i am switching between other workbooks. For that I'm using following code in deactivate event.

Private Sub Workbook_Deactivate()

Dim frm As UserForm

    For Each frm In UserForms

        Unload frm

    Next frm

End Sub

I am using web-browser control in UserForm. The above code works fine if i don't make use of web-browser. but If i use web-browser, after webbrowser.navigate2 URL command, I'm not able to switch between other workbooks as the deactivate event is not firing at all. Please help me with this.

share|improve this question
It works for me... – Siddharth Rout Jan 28 at 10:20
@SiddhartRout It works for me only if i don't use the webbrowser control. Even if i open a single url in it once, it doesn't detect deactivate event afterwards. – mayur2j Jan 28 at 10:41
Oh I missed the URL Part... Let me check it again – Siddharth Rout Jan 28 at 10:48
OK that is because the focus is shifted to a field in the webbrowser and hence the Workbook_Deactivate() doesn't fire. There is an alternative if you want. Create a small commandbutton and shift it beyond the borders of the form. When the webpage fully loads, set the focus on the commandbutton. Now when you try to move between workbooks, your above code will run... – Siddharth Rout Jan 28 at 10:57
Still no luck. I added a button in form and on event of documentcomplete i set the focus to the new button. It sets the focus to the new button but doesn't fire deactivate event whle trying to switch workbooks. – mayur2j Jan 28 at 11:18
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.