vbModeless user form crashes Excel

P

Plutopotamus

The user form loads on workbook_open as vbmodeless. The workbook
minimizes and basically stays in the background. You cannot access the
workbook unless you close the form. But once you close the form, you
can open a second workbook. Then when the form is open you can access
both workbooks. The problem occurs when you exit Excel without closing
the form, which causes a crashed type message. I tried adding form.hide
before close, but that didn't work. Any ideas?
 
G

Guest

use the workbook's before close event..

example

Private Sub Workbook_BeforeClose(Cancel As Boolean)
test
''' Cancel = True '' use this for testing to stop the workbook closing!!
End Sub

Sub test()
If UserForm1.Visible Then
Unload UserForm1
MsgBox "Closing form"
Else
MsgBox "OK"
End If
End Sub

Patrick Molloy
Microsoft Excel MVP
 
P

Plutopotamus

Thank you, Patrick. That worked! I had tried beforeclose but obviously
wasn't coding it right. Thanks much!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top