stationary dialog box
-
Hi all, How do i make my dialog box stationary, that means in permanent position(not movable by an user)? Can anyone please help me in this regards? Thanks.
Regards, Ram
-
Hi all, How do i make my dialog box stationary, that means in permanent position(not movable by an user)? Can anyone please help me in this regards? Thanks.
Regards, Ram
You can catch the moved event and move it back. I don't believe you can lock it otherwise.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Hi all, How do i make my dialog box stationary, that means in permanent position(not movable by an user)? Can anyone please help me in this regards? Thanks.
Regards, Ram
Do this...
CMenu* pSysMenu = GetSystemMenu(FALSE);
pSysMenu->RemoveMenu(SC_MOVE, MF_BYCOMMAND); -
Hi all, How do i make my dialog box stationary, that means in permanent position(not movable by an user)? Can anyone please help me in this regards? Thanks.
Regards, Ram
-
Hi all, How do i make my dialog box stationary, that means in permanent position(not movable by an user)? Can anyone please help me in this regards? Thanks.
Regards, Ram