怎樣遮蔽掉開始按鈕? (轉)

worldblog發表於2007-12-09
怎樣遮蔽掉開始按鈕? (轉)[@more@]procedure TForm1.Button1Click(Sender: T);
begin
{Disable the start button}
EnableWindow(FindWindowEx(FindWindow('_TrayWnd', nil),0, 'Button', nil),false);
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
{Enable the start button}
EnableWindow(FindWindowEx(FindWindow('Shell_TrayWnd', nil),0,'Button',nil),true);
end;

注意:如果按win鍵還是可以彈出開始選單的。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-990000/,如需轉載,請註明出處,否則將追究法律責任。

相關文章