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.
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:57documentcompletei 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