I have a form that inherit from a base form, the base form only have some public event and empty code methods and functions. After the form InitializeComponent(), I have add in some code to call a sub. This sub will do the databinding with the windows control. But I discovered my code in form load event didn't work, even a simple msgbox("Hello world!") also don't work. The Handles MyBase.Load also still there.
What is the problem? it's a bug or if I add code after the InitializeComponent() will effect the Form Load?