Hi
I currently have a button with the following code:
procedure TForm1.Button1Click(Sender: TObject);
var
A: TForm2;
begin
A := TForm2.Create(self);
A.Show;
end;
But all forms created are under the application task in Windows TaskBar.
How do I create a form dynamically and have it register on its own task under Windows TaskBar. Something like MS Outlook, when you click on "Create New Mail" button, it will open a new mail form with its own task bar.
Many Thanks.
regards,
CM
I currently have a button with the following code:
procedure TForm1.Button1Click(Sender: TObject);
var
A: TForm2;
begin
A := TForm2.Create(self);
A.Show;
end;
But all forms created are under the application task in Windows TaskBar.
How do I create a form dynamically and have it register on its own task under Windows TaskBar. Something like MS Outlook, when you click on "Create New Mail" button, it will open a new mail form with its own task bar.
Many Thanks.
regards,
CM