Autor Beitrag
Borlox
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 191

Win XP
Delphi 6 Enterprise
BeitragVerfasst: Do 07.11.02 00:58 
Was muss ich in mein Programm für einen Code eingeben, wenn ich nicht möchte, dass mein Programm in der Taskleiste zu sehen ist?????

Borlox
Snoop007
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starofftopic star
Beiträge: 50



BeitragVerfasst: Do 07.11.02 02:10 
ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
procedure TForm1.FormShow(Sender: TObject);
var
  Owner : HWnd;
begin
  Owner := GetWindow(Handle,GW_OWNER);
  ShowWindow(Owner,SW_HIDE);
end;


:D