I have a number of tool panels which do to the righthand side of the screen.One of the panels needs to be a fixed width as it is has to act more like a fixed size dialog so I would like the width of the Zone for that panel to be widened if necessary.
This is a snip of the code I have tried but the zone width stays the same as set by the last drag of the splitter.
var dp: TLMDDockPanel;
dz: TLMDDockZone;
dpPICD.PanelVisible := true;
dz := dpPICD.Zone;
dz.width := fmPICDExplorer.Width; // fmPICDExplorer is a form contained in dock panel.
How can I force the width up when this panel is shown?
Comments