Hi,
I have added a gestureManager to TWebBrowser but it doesn't work at all.
In fact, I need use only InteractiveGesture, but the corresponding event never triggers.
void __fastcall TForm1::WebBrowser1Gesture(TObject *Sender, const TGestureEventInfo &EventInfo,
bool &Handled)
{
String s;
if (GestureToIdent(EventInfo.GestureID, s)) {
ShowMessage(s);
}
else {
ShowMessage("Could not translate gesture identifier");
}
}
Thanks in advance.