Como esconder o aplicativo da barra de tarefas

Delphi

03/04/2003

Preciso esconder o meu sistema da barra de tarefas, não so a tela de entrada mas tmb qnd abre-se um menssagem, a mesma não pode aparecer na barra de tarefas...

Obrigado pela Atenção!


Anonymous

Anonymous

Curtidas 0

Respostas

Anonymous

Anonymous

03/04/2003

Estou precisando muito esconder da barra de tarefas e preciso resolver isto hoje....


GOSTEI 0
Aroldo Zanela

Aroldo Zanela

03/04/2003

http://clubedelphi.videomart.com.br/viewtopic.php?t=7859&highlight=barra+de+tarefas


GOSTEI 0
Marcelo.c

Marcelo.c

03/04/2003

Tente:
program Project1;

uses
Windows,
Forms,
Form1 in ´Unit1.pas´;

{$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(TForm1, Form1);
Application.ShowMainForm := False;
Application.Run;
end.


GOSTEI 0
POSTAR