Hello, I think there is a bug, or non finished work on MDI application in lazarus/fpc.
for Exemple, I can not make a child (form)window in the sametime
Formstyle = fsMDIChild & disable the maximize button & borderstyle to BorderStyle
i.e
This combinaison of params do not work ( it take only the first one).
self.FormStyle := fsMDIChild;
self.BorderStyle := bsSingle;
self.BorderIcons := [biSystemMenu, biMinimize];
So I wonder on how to make my child form not sizable and disactivate the maximize button and letting this form to be MDIChid.
Thank you.