Hi,
Anyone has an idea about how to force a Form
to remain behind all other Forms (i.e. a
background Form).
I tried vbModal and Zorder, but didn't work.
Thank you
Printable View
Hi,
Anyone has an idea about how to force a Form
to remain behind all other Forms (i.e. a
background Form).
I tried vbModal and Zorder, but didn't work.
Thank you
Sure, if Form1 is the root form, always use the vbModal keyword to open new forms. This disables Form1 and lets the other forms be the topmost forms.
You can also experiment with the SetWindowPos API.
Behind all forms of your project or behind all windows as the desktop does? If so you need to subclass your form... you can ask me, I've got the code (but no time at the moment)