Hi all,

I did a very simple project (under win) with two forms:
Form1: Button1, Panel1
Form2: Button1, Button2

procedure TForm1.Button1Click(Sender: TObject);
begin
  Form2.Parent := Panel1;
  Form2.BorderStyle := bsNone;
  Form2.Align := alClient;
  Form2.Visible := True;
end;

When executing this code, this is working as expected, the the 'focus'
is stick on the Form2 and it is impossible to click on Form1's
controls. It is behaving properly if not 'docked'.

Also, it is possible to do Alt+Space and have the system menu
appearing. Well, in bsNone mode... I assume this should not be the
case since there is no system menu.

Are there any bug reported on this issue in mantis? (I have no time to
look right now.)

Regards.

--
Alexandre Leclerc

_________________________________________________________________
     To unsubscribe: mail [EMAIL PROTECTED] with
                "unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to