How can I put additional method if I want to add a constructor. Like example with Form Class, when I add constructor, it always add a method called InitializeComponent() and a comment

vb Code:
  1. Public Sub New()
  2.  
  3.     ' This call is required by the Windows Form Designer.
  4.     InitializeComponent()
  5.  
  6.     ' Add any initialization after the InitializeComponent() call.
  7.  
  8. End Sub

Regards

Michael