Make non-modal form an inactive window

G

Greg Lovern

We have a form that we show non-modal. I've been asked to make it an
inactive window, like what happens if you click on a cell behind it.

The worksheet's activate method doesn't do it, and the range activate
method doesn't do it either.

Any suggestions on how I can de-activate a non-modal form?


Thanks,

Greg
 
G

Greg Lovern

Disregard, I found this:

frmMyForm.Show vbModeless
AppActivate Application.Caption


Greg
 
D

Dave Peterson

In the userform module:

Option Explicit
Private Sub UserForm_Activate()
AppActivate Application.Caption
End Sub
 

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