how do i make a form unmovable in vb6
thanks chris1990
Printable View
how do i make a form unmovable in vb6
thanks chris1990
Make it borderless.
And simulate the title bar with image/picbox/etc controls
i cant make it borderless as it has a menu bar, is their a code for it.
Then make is maximized, and do not permit them to alter its windowstate.
i think your talkin about unresizable, i mean unmovable. at the moment i can click and hold on the title bar and move the form.
subclass it do a search in the forum. use spy to find the windows message.
how do i do that
Right....and if it has a title bar, and there is real estate on the screen, you can move it.
However, if it is maximized, there is no place to move it to.
set the Moveable property to False at design time.
thanks to everyone,
thanks bushmobile i forgot that the moveable property was their.
chris1990