Hello all,Sorry for the newbie question and I imagine the answer is no. I have a method I want to run after the form is completely loaded. What I mean by Loaded is all controls have been drawn and the form is waiting for user input. I can see running this method in the background so perhaps a worker thread is appropriate here?
My question is this: Is there a standard form event I can use to call my method after the form has been completely drawn? I have tried after InitializeComponents in the New event, Load, Activate, GainFocus (with a flag stating its the initial load), etc. and none of these events allow the form to completely draw prior to calling my method that takes between 5-10 seconds to run.
Ideas?
Ben