Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Create Forms Dynamically and TaskBar

Status
Not open for further replies.

heecm

Programmer
Dec 3, 2003
10
JP
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
 
Does this FAQ answer your question ?

faq102-5462

Andrew
Hampshire, UK
 
No, the FAQ does not help.
Basically what I want to achieve is like MS Outlook. When you double-click to read a mail, it will open a new form with its own handle (taskbar).
 
look here :

thread102-1020194

cheers,

Daddy

--------------------------------------
What You See Is What You Get
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top