Ver Mensaje Individual
  #4  
Antiguo 13-07-2011
x_aguilarf x_aguilarf is offline
Miembro
 
Registrado: abr 2006
Posts: 22
Reputación: 0
x_aguilarf Va por buen camino
Podrías probar con esto:

Código Delphi [-]
procedure TForm1.FormKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState);
begin
  if Key = VK_MENU then
  begin
    if Menu = nil then
      Menu:= MainMenu1
    else
      Menu:= nil;
    Key:= 0;
  end;
end;
Responder Con Cita