It's a foreign window. I tried SetWindowPos with window style WS_Border but it left a very thin border that can still be resized.
Thanks.
Printable View
It's a foreign window. I tried SetWindowPos with window style WS_Border but it left a very thin border that can still be resized.
Thanks.
Hey Wade,
You were on the right track, I think. Try using the WS_DLGFRAME constant instead. Here is the Dim for it:
Code:Public Const WS_DLGFRAME = &H400000
I'm getting the same with WS_DLGFRAME.
I've got it in General VB Qs
Works like a charm, Sam.
Thanks.