Mega Code Archive

 
Categories / VB.Net Tutorial / GUI
 

Create Form by inheriting System Windows Forms Form

imports System.Windows.Forms namespace WinForms   public class HelloWorld : inherits System.Windows.Forms.Form     public sub New()             Text = "Hello World"     end sub     shared sub Main()        Application.Run(new HelloWorld())     end sub   end class end namespace