Hi,
Maybe I am doing this wrong, but here is my problem :
I'm trying to catch the web control which was selected during an OnClicke vent associated to my EO.WebBrowser.WebView.
I would like to make a virtual keyboard appear when the user clicks on a textbox/textarea control on the page, so I need to at least get the type of the control on which the user clicked.
Kind of like this, to keep it simple :
Code: C#
private void webView_Click(object sender, EventArgs e)
{
// Get the sender control
var sender = ...
// Check type and do stuff
if(sender.type == input ...) // for example
popKeyboard();
}