发信人: lofe ()感激生活(), 信区: BorlandDev
标  题: Delphi Tips:Minimized Forms to the Taskbar 
发信站: 哈工大紫丁香 (Mon Sep  4 16:03:32 2000), 转信

ZDTips brings you another...

Delphi Tip

This Delphi Tip is sponsored by The Cobb Group's Delphi Developer's Journal.

For a free issue of the Delphi Developer's Journal, simply fill out the
form at http://www.cobb.com/ddj/freevw79.htm

************************************

Minimized Forms to the Taskbar (Delphi 2.0 only)

If your Delphi 2.0 application creates several forms, you've probably
noticed that minimizing individual forms doesn't send them to the taskbar,
as it did for Delphi 1.0. To force Windows to place a secondary form's icon
on the taskbar, and minimize the form there, override the CreateParams()
method for the form, and add the following implementation:

procedure TForm2.CreateParams(var Params: TCreateParams);
begin
  inherited CreateParams(Params);
  Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW;
end;

When you minimize this form, it will display a taskbar icon alongside the
application icon.

( submitted by: Tim Gooch [http://www.cobb.com/ddj])
************************************   

Got Tips?

If you've got short tips you'd like to share with fellow Delphi developers,
we'd love to use this service to pass them along! If we use your tip, we'll
mention your name in the message, along with a URL for your company or
personal home page (as we've done above).

Send your tips to:

  delphi_dev@cobb.com 
************************************ 

Bonus Tip

If you'd like to participate in a moderated discussion about various Delphi
programming topics, you may want to check out our DDJ-THREAD Delphi
Discussion List (miscellaneous Delphi topics) or our DDJ-THREAD-DB Delphi
DB Discussion List (database-related Delphi topics). To subscribe to either
list, send a message to:

  listproc@zdtips.com

and place the line
  
  subscribe ddj-thread <your_name>

or

  subscribe ddj-thread-db <your_name>

in the body of the message. The DDJ-THREAD Delphi Discussion List and the
DDJ-THREAD-DB Discussion List are more free services provided for you by
Delphi Developer's Journal and The Cobb Group.

*************************************

This weekly tip is delivered to you as a free service from ZDTips.  

To unsubscribe from this list, just send E-mail to this address:

 listproc@zdtips.com 

with the following line in the body of the message:

 unsubscribe ddjtips

ZDTips (TM) is a trademark of Ziff-Davis Inc. Copyright 1997--All Rights
Reserved.


--
※ 修改:.haojs 于 Sep  4 16:01:04 修改本文.[FROM: bbs.hit.edu.cn]
--
※ 转寄:.武汉白云黄鹤站 bbs.whnet.edu.cn.[FROM: bbs.hit.edu.cn]

--
☆ 来源:.哈工大紫丁香 bbs.hit.edu.cn.[FROM: haojs.bbs@bbs.whnet.]
[百宝箱] [返回首页] [上级目录] [根目录] [返回顶部] [刷新] [返回]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:3.642毫秒