Tuesday, 15 November 2011
Home »
Tips and Trick Delphi
» How to display the windows start menu, without clicking the start button.
How to display the windows start menu, without clicking the start button.
To Share | Tuesday, 15 November 2011
Declaration procedure:
ShowStartMenu procedure;
var
hSMenu: HWND;
begin
hSMenu: = FindWindow ('DV2ControlHost', 'Start Menu');
ShowWindow (hSmenu, SW_RESTORE);
end;
Examples of Implementation:
Procedure TForm1.Button1Click (Sender: TObject);
begin
ShowStartMenu;
end;
No comments:
Post a Comment