Перехват двойного клика
Я в CppWebBrowser-e открываю excel документ и хочу запретить его редактирование...Очень нужно.
Спасибо за ранее....
Привет всем...Подскажите как на CppWebBrowser-e перехватить двойной клик мыши и заблокировать его.
Я в CppWebBrowser-e открываю excel документ и хочу запретить его редактирование...Очень нужно.
Спасибо за ранее....
Перехватывай событие OnEnter и в нем обрабатывай запрет редактирования.
Перехватывай событие OnEnter и в нем обрабатывай запрет редактирования.
OnEnter это на возврат каретки событие...а мне нужен двойной клик мыши если есть кокой-то код....буду благодарен, и ещё в CppWebBrowser'e эксель документ можно редактировать по нажатию F2 тоже хотелось бы запретить эту клавишу...
Спасибо за ранее...
OnEnter это на возврат каретки событие...а мне нужен двойной клик мыши если есть кокой-то код....буду благодарен, и ещё в CppWebBrowser'e эксель документ можно редактировать по нажатию F2 тоже хотелось бы запретить эту клавишу...
Спасибо за ранее...
Читайте внимательнее help
[COLOR=red]Occurs when a control receives the input focus.[/COLOR]
__property Classes::TNotifyEvent OnEnter = {read=FOnEnter, write=FOnEnter};
Description
[COLOR=red]Use the OnEnter event handler to cause any special processing to occur when a control becomes active.[/COLOR]
The OnEnter event does not occur when switching between forms or between another application and the application that includes the control.
When switching between controls in separate container controls such as the TPanel and the TGroupBox controls, an OnEnter event occurs for the container before the OnEnter event of the contained control.
Similarly, an OnExit event of the container occurs after the OnExit event of the control in a container when focus moves to another control outside the container.
For example, consider a form with an OK button and a group box that contains three radio buttons, where focus is currently on the OK button. When the user clicks one of the radio buttons, an OnExit event of the button occurs, followed by an OnEnter event on the group box, and finally an OnEnter event on the radio button that was clicked. If the user then clicks on the OK button, an OnExit event for the radio button occurs followed by an OnExit event for the group box, and then the button’s OnEnter event occurs.