Software Archive
Read-only legacy content
17061 討論

reg. getting rid of minimizebox,maximizebox in child windows

rjar
初學者
333 檢視
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 積分
1 回應
Jugoslav_Dujic
傑出貢獻者 II
333 檢視
Exclude WS_MINIMIZEBOX and WS_MAXIMIZEBOX bits from MDICREATESTRUCT%style member, e.g.
MCS%style = IAND(MDIS_ALLCHILDSTYLES, NOT(IOR(WS_MINIMIZEBOX, WS_MAXIMIZEBOX))).
回覆