Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussions

reg. getting rid of minimizebox,maximizebox in child windows

rjar
Beginner
353 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
353 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