Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TMS ToolPanels
Starting an application with a panel in locked state

Normally, when the application starts, by default a TAdvToolPanel starts in closed state. To programmatically control that a panel is always initially shown and locked on startup, following code can be used:
procedure TForm1.FormCreate(Sender: TObject);
begin
  advtoolpanel1.Visible := true;
  advtoolpanel1.Locked := true;
end;