So I've went from a winform with my app to a new WPF version because I've wanted to to a ribbon.

So I never used WPF before and pretty much took a crash course in the over the last couple of weeks. Everything has went smootly up until the last 48hrs.

All I need to do it click "submit" on a form/ webpage inside of the WPF webbrowser. (TALK ABOUT A NITEMARE!)

Old way that worked perfectly:

wbGetHost.Document.All("get_host_info").Focus() ' Focus on textbox in form
wbGetHost.Document.All("get_host_info").InnerText = rgServers.SelectedItem 'Set text of textbox
wbGetHost.Document.GetElementById("Submit").InvokeMember("Click") ' Click submit button



Everything works except the "click" event and I cant find anything on how to get it to work.



Thanks for any help!

Adam