form-load

Execute component code just before or after Form_Load event in .NET WinForms?

I have a component that is in conflict with another component that handles some internal translations. What happens is that business logic components gets executed, then the translation system executes, which picks up texts now present in the form, and attempts to translate them. The problem is that the text now contains things like nu...

What is the best way to call a method right AFTER a form loads?

I have a C# windows forms application. The way I currently have it set up, when Form1_Load() runs it checks for recovered unsaved data and if it finds some it prompts the user if they want to open that data. When the program runs it works alright but the message box is shown right away and the main program form (Form1) does not show unti...