Jump to content

Disable Ctrl+F In Browser


Ario.Paxaz

Recommended Posts

MainForm -> MonitoredKeys -> Keys ... add TUniMonitoredKeyItem:

 

HandleBrowser = False

KeyEnd = 70

KeyStart = 70

procedure TMainForm.UniFormKeyDown(Sender: TObject; var Key: Word;
  Shift: TShiftState);
begin
  case Key of
    70:
      if ssCtrl in Shift then
        ShowMessage('ctrl+F clicked');
  end;
end;
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...