TsFrameBar alwais create frame

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #36788
    jars
    Participant

    Hi,

    Is there any way to keep the Frame already created after retracting control with a click. I need to keep the selected items of the frame and not recreate every time ?.

    Thanks in advance.

    #54486
    mol
    Participant

    The obvious:

    Code:
    procedure TForm1.sFrameBar1Items0FrameDestroy(Sender: TObject;
    var Frame: TCustomFrame; var CanDestroy: Boolean);
    begin
    CanDestroy := False;
    end;

    -Uwe

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.