Software Archive
Read-only legacy content
17061 Discussions

reg. getting rid of minimizebox,maximizebox in child windows

rjar
Beginner
290 Views
Hi,
I need some help for getting rid of the Minimise and Maximise Box on the Child windows. I have created my child windows using wm_mdicreate message.Thanks
-RJAR
0 Kudos
1 Reply
Jugoslav_Dujic
Valued Contributor II
290 Views
Exclude WS_MINIMIZEBOX and WS_MAXIMIZEBOX bits from MDICREATESTRUCT%style member, e.g.
MCS%style = IAND(MDIS_ALLCHILDSTYLES, NOT(IOR(WS_MINIMIZEBOX, WS_MAXIMIZEBOX))).
0 Kudos
Reply