I've written initialization code for each of my TabPages in the the Selected event handler. However, when the form where the TabControl lives first loads,
(1) the Selected event of the TabPage that's displayed doesn't fire automatically and (2) programmatically selecting a TabPage in the Form Load event (by using SelectTab or SelectedIndex etc) is ignored and does not fire the Selected event.
How do I cause the Selected event to fire on Form Load, or how do I cause my initialization code to run for the top, visible TabPage? Thanks!
-Doug