Userform stays on top when ShowModal=False

  • Thread starter Thread starter John Ford
  • Start date Start date
J

John Ford

I have a modeless userform that works great, except its window
stays on top when I make another Outlook window active. I can use
the other window, I just have to move the userform out of the way
to see what I'm doing and/or click the mouse where I need it.

How do I get the modless form to go behind the other Outlook
windows?
 
UserForms don't have a Zorder property like VB forms do, so you'd have
to use something like the Hide method of the form or set its Visible
property to False. You could get a handle to the form and change the
display orders using Win32 API functions but that's a lot more
complicated.
 
Back
Top