Re: After Form Load Event?
A useful event for doing things once after form load is complete is the form's Shown event.
Re: After Form Load Event?
Probably an error because the controls you are trying to load haven't initialized yet ?
Re: After Form Load Event?
Quote:
Originally Posted by gplayer
A useful event for doing things once after form load is complete is the form's Shown event.
Given that this thread was created in 2004, before .NET 2.0 was released, Shown wasn't an option. It certainly would be nowadays, but back then we had to use the Activated event with a Boolean variable to indicate whether it's the first time or not.