> > Questions runs... Is there any event in Windows Forms that
> > is raised after a Form has been loaded? My form does a lot
> > of processing at startup and I'd like it to display itself then
> > do its processing, reporting to the user on its progress as it
> > does it.  I tried the Load event but that seems to get invoked
> > just before the form is displayed.

In the Form's Load event, you should fire off an asych delegate [1] to
do the work, then populate the form when the delegate has completed.

Chris

[1] http://www.sellsbrothers.com/writing/#delegates

You can read messages from the DOTNET archive, unsubscribe from DOTNET, or
subscribe to other DevelopMentor lists at http://discuss.develop.com.

Reply via email to