Copy to Clipboard

bharanidharanit

Well-known member
Joined
Dec 8, 2008
Messages
53
Location
India
Programming Experience
1-3
Hello sir,
I am using VS2005.
In the form i am having Webbrowser Control. I am viewing many HTML pages on this control.
What i need is, with a button click i need to copy the content of textarea in every HTML pages to clipboard.
Can anyone help me in this?
 
With Clipboard.SetText you set text for clipboard. With the browsers Document object you call GetElementsByTagName to get the textarea tag elements, these elements have text in InnerText property one would think.
 
Back
Top