Einzelnen Beitrag anzeigen

Benutzerbild von storm1988
storm1988

Registriert seit: 4. Aug 2005
Ort: Salzburg
91 Beiträge
 
Delphi 6 Professional
 
#14

Re: Programm aus Taskleiste ausblenden

  Alt 18. Okt 2005, 21:02
SO hab jetzt folgenden Code geproggt:

Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
  Handle: HWND;
  WindowStyle : Integer;
begin
  Handle:=GetWindow(GetDesktopWindow(),GW_CHILD);
  while (Handle<>0) do
  begin
  if (IsMainAppWindow(Handle) and (AnsiContainsStr(GetWindowCaption(Handle),'Unbenannt - Paint'))) then
  begin
    //WindowStyle := GetWindowLong(handle, GWL_STYLE);
    //WindowStyle := WindowStyle and (not WS_ICONIC) ;
    SetWindowLong(handle, GWL_STYLE, (GetWindowLong(Handle, GWL_STYLE) and (not WS_ICONIC) ));
    break;
  end;
  Handle:=GetWindow(Handle,GW_HWNDNEXT);
  end;
end;
Jedoch passiert nicht das was ich will, bzw. es passiert garnix.
Wie schaffe ich es jetzt, dass ich das gewünschte Programm aus der Taskleiste bringe??

Und noch so ne Frage am Rande! Wie kann ich das Programm dann Refreshen??
Mfg st0rm

There are no stupid questions. Just stupid people.
  Mit Zitat antworten Zitat