Can someone tell me why....
txtLastName.Focus()
Does NOT WORK when loading my .NET forms?
That is the last line listed in the Load event of my form.
I have also implemented a Private m_Loaded as Boolean variable that I set in the Load event, then I make sure this variable is set to True before running any code in the TextChanged events of any of my text boxes, Click events of checkboxes, Change event of combo boxes, as well as the Form_Resize and Form_Move events as well.

Could someone tell me what ELSE runs before/after the Load event that may be screwing this up?
I'd appreciate the help.