Click here to Skip to main content
15,885,753 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello guys, i have compiled a code to send key strokes to a geckofx webrowser, but the problem is it doesn't seem to send the keys!! so any ideas? thanks in advance!
here's my code;

VB
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Me.geckowebrowser1.Focus()
    'to focus on the browser
    SendKeys.SendWait("{tab}")
    
End Sub
Posted
Comments
tony karant 17-Mar-13 11:51am    
thanks u very much, i changed it to upper case and it works fine

1 solution

Hey the only thing that jumps out there is that TAB is not upper case.
See http://msdn.microsoft.com/en-us/library/system.windows.forms.sendkeys.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900