Ario.Paxaz Posted August 13, 2017 Posted August 13, 2017 Hi How to can disable Ctrl+F In browser? Best Regards. Quote
Sherzod Posted August 13, 2017 Posted August 13, 2017 Hi, Please look at this demo: \FMSoft\Framework\uniGUI\Demos\Desktop\MonitoredKeys Quote
Sherzod Posted August 13, 2017 Posted August 13, 2017 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; Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.