here is my situation:
I have class 1 that calls a method from class 2.
Class 2 does the method, and then listens for an event to happen. In this case, it waits for a the browser control to load.
How can I make class 1 wait for the event to happen in class 2?
Register an idle handler in class 2’s method that invokes class 1 once the control has loaded.