A
Andy B
I have some code that needs to go in a WebBrowser.DocumentComplete event.
The problem is that the code doesn't run for some reason. Here is the code:
BugFixList.Items.Add("Test")
it seems like any code that isn't directly related to the
WebBrowser.Document gets ignored and isn't ran. The alternative is to put
the extra code inside of a button_click event, but the problem is that the
code needs to be ran after the WebBrowser.DocumentComplete event has
finished its work. How do I do something like this and be clean, simple and
practicle with my code?
The problem is that the code doesn't run for some reason. Here is the code:
BugFixList.Items.Add("Test")
it seems like any code that isn't directly related to the
WebBrowser.Document gets ignored and isn't ran. The alternative is to put
the extra code inside of a button_click event, but the problem is that the
code needs to be ran after the WebBrowser.DocumentComplete event has
finished its work. How do I do something like this and be clean, simple and
practicle with my code?