I\'ve been trying to figure out how to retrieve the text selected by the user in my webbrowser control and have had no luck after digging through msdn and other resources, S
And if You just use the technique bellow?
//Copy selected text to clipboard
Clipboard.Clear(); SendKeys.SendWait("^(c)");
//Get selected text from clipboard
string strClip = Clipboard.GetText().Trim(); Clipboard.Clear();