' Template ' Downloaded from www.publicjoe.co.uk ' ' This software is provided 'as-is', without any express or implied warranty. ' In no event will the author(s) be held liable for any damages arising from ' the use of this software. ' ' Permission is granted to anyone to use this software for any purpose, ' including commercial applications, and to alter it and redistribute it ' freely. Imports System Imports System.Drawing Imports System.Windows.Forms Public Class Template : Inherits Form Private components As System.ComponentModel.IContainer Public Sub New() MyBase.New() InitializeComponent() End Sub 'Form overrides dispose to clean up the component list. Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub Private Sub InitializeComponent() ' 'Form1 ' Me.Name = "Template" Me.Text = "Template" Me.ClientSize = New Size( 240, 240 ) End Sub 'Run the application Public Shared Sub Main() Application.Run(New Template( )) End Sub End Class