Hello,

I'm trying to SetFocus to either the Flash object on the website or the created webbrowser in a different procedure of command1_click and then send the VK_RIGHT key. Anyone have some ideas on how to accomplish this?

I'm using this to create the IE object and navigate.

Thanks

Code:
Private Sub Command1_Click()
Set test = New SHDocVw.InternetExplorer
Dim strLogin As String
strLogin = Text1.Text
Set test = CreateObject("InternetExplorer.Application")
test.Visible = True
Call test.Navigate(Text1.Text)
End Sub