Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion

Lmddocking : Creating a floating panel at run time

Hi,
My main form as a TlmddockSite, And I would like to create a floating panel with a specific screen bounds (left, top, width, height) at run time.
How can I do that ?

Comments

  • 3 Comments sorted by Votes Date Added
  • Hi,

    You can create a panel, like any other component, for example:

    pnl := TLMDDockPanel.Create(Self);

    To make it floating, use standard Delphi method ManualFloat, for example:

    pnl.ManualFloat(Rect(100, 100, 200, 200));

    Eugene,
    LMD Innovative.
  • Thanks, that's all I needed :)
Sign In or Register to comment.