Hi Experts,
I want to use internet explorer shortcut keys in my vb.net application. Basically I want to use CTRL+A, CTRL+C and CTRL+V for copy and paste purpose. I am using WebBrowser control in my vb form and have button and text box on it. What I want is when I press the button, It should select All the web content and copy the text in clipboard and paste it back on my textbox. I have tried sendkey with differently but nothing is workout.
Any help will be appreicated. Thanks
I have used the follwoing code
WebBrowser1.Focus()
SendKeys.SendWait("^a")
' Threading.Thread.Sleep(1000)
SendKeys.SendWait("^c")
' Threading.Thread.Sleep(1000)
RichTextBox1.Focus()
SendKeys.SendWait("^v")
Thanks for reply.
I have modified your code little bit as follows. What I see the its copying the content but not pasting in my textbox automatically. If I press CTRL+V in my textbox I get the content copied in my textbox. Is there any workarround for it.
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
' getCurrentBrowser().Docume
WebBrowser1.Focus()
WebBrowser1().Document.Exe
WebBrowser1().Document.Exe
RichTextBox1.Focus()
WebBrowser1().Document.Exe
End Sub
Thanks for help