[delphi] Zmiana rozmiar i ulozenia paska start

0

Witajcie, mam pasek start :) i musze zmienic jego wyglad, zerknijcie na obrazek:
http://img518.imageshack.us/img518/7398/pasekfk7.jpg , obecnie mam pasek nr 1 , a za pomoca d7 personal musze uzyskac pasek nr 2 , jest to wykonalne?
czekam na propozycje, pozdro

0

Jest. Poszukaj na MSDN (Microsoftu Sieć Dzieci Neo - żart ;) ).

0

ShellTrayWindow to nazwa pasku startu
wbiłem w google i mam np takei coś

function ShowOrHideStartWndBtn(Action: Boolean): Boolean;  // save Version
var
  hShellTrayWnd, hStartBtn: HWND;
begin
  Result := FALSE;
  hStartBtn := 0;

  // find the ShellTrayWindow
  hShellTrayWnd := FindWindow('Shell_TrayWnd', nil);

  // find the Start Button
  if hShellTrayWnd <> 0 then
  begin
    hStartBtn := FindWindowEx(hShellTrayWnd, 0, 'Button', nil);

    if hStartBtn <> 0 then
    begin
      Result := TRUE;
      case Action of
         TRUE: ShowWindow(hStartBtn, SW_SHOW); // now show the Button
        FALSE: ShowWindow(hStartBtn, SW_HIDE); // where is the button now?
      end;
    end;
  end;
end; 

mając już uchwyt okna możesz robić inne rzeczy =]

1 użytkowników online, w tym zalogowanych: 0, gości: 1