Zitat von
MichaelLinden:
Könnte das nicht eine nmormale Form sein?
Positionierung: vielleicht:
Delphi-Quellcode:
function TaskBarHeight: Integer;
var
hTB: HWND;
// taskbar handle
TBRect: TRect;
// taskbar rectangle
begin
hTB:= FindWindow('
Shell_TrayWnd', '
');
if hTB = 0
then
Result := 0
else begin
GetWindowRect(hTB, TBRect);
Result := TBRect.Bottom - TBRect.Top;
end;
end;
Delphi-Quellcode:
// ins entsprechende Ereignis:
FormX.Left := Screen.Width + FormX.Width;
FormX.Top := Screen.Height - FormX.Height - TaskBarHeight;
Was macht dein Code, wenn die Taskleiste nicht am unterem Rand ist?