I have a section of code in which I want to display a messagebox after a form is displayed... as the form loads. I used....

me.show
messagebox.show

If I don't use me.show first, the messagebox appears before the form is displayed. If I do use me.show first, the form appears, but is not always complete before the messagebox appears. Is there an easy way to poll the form to see if it is done displaying without using a timer?

Thanks.