프로젝트 파일 (.dpr)에서 작업을 친다.
Window Style 조절로 가능.
아래는 예제 프로젝트의 dpr 파일.
굵게 표시된 부분만 추가하면 됨.
program ToolWin;
uses
Forms,
Windows,
Main in 'Main.pas' {frmMain};
{$R *.res}
var ExtendedStyle: Integer;
begin
Application.Initialize;
// 작업표시줄에 나타나지 않게
ExtendedStyle:=GetWindowLong(application.Handle, GWL_EXSTYLE);
SetWindowLong(Application.Handle, GWL_EXSTYLE, ExtendedStyle or WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW);
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.
'Delphi' 카테고리의 다른 글
[Delphi] 프로세스의 우선순위 출력 (0) | 2009.04.18 |
---|---|
[Delphi] 프로세스 우선순위 올리기 (0) | 2009.04.18 |
[Delphi] 폼에 드래그 앤 드롭 구현하기 (0) | 2009.04.18 |
[Delphi] 바탕화면을 내 폼안으로 (0) | 2009.04.18 |
[Delphi] Zip 압축관련 Component (ZipMaster) (0) | 2009.04.18 |