Is there some sort of boolean that I can use to check whether the instance of a form is loaded, or otherwise wait until the form is loaded?
for example:
While(form_loaded == false) { Try { //do something } catch { }//do try catch so code won't barf } I keep getting the following exception:
A first chance exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll
An unhandled exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll
Additional information:
InvokeorBeginInvokecannot be called on a control until the window handle has been created.
This is what I am worrying about.
Additionally if a more detailed explanation is needed I can try to post some code and/or some more output debugging information.
Form_Shown