Ver Mensaje Individual
  #5  
Antiguo 14-07-2011
x_aguilarf x_aguilarf is offline
Miembro
 
Registrado: abr 2006
Posts: 22
Reputación: 0
x_aguilarf Va por buen camino
Una solución mucho mejor que hace lo que pides:

Código Delphi [-]
procedure TForm1.WndProc(var Message: TMessage);
begin
  inherited;
  case Message.Msg of

    WM_EXITMENULOOP: begin
      Self.Menu := nil;
    end;

    WM_ENTERMENULOOP: begin
      Self.Menu := MainMenu1;
    end;

  end;
end;

Saludos
Responder Con Cita