I'm having a problem with a SIMPLE proceedure...
The API documentation I've found states...

"HWND_TOPMOST = -1
Make the window topmost (above all other windows)
permanently."

...And in all the post I've read, this argument
seems to work when calling SetWindowPos to keep my
Main Form Always on Top.

I've placed the call in my Form_Load, and it doesn't
work. It begins initially on top, but NOT permanently,
ther widows are allowed to be placed over it. I have even
ncluded the flag... SWP_NOZORDER so as not change the
indow's position in the Z-order.

What am I missing?

-Serp