' Simple Hello Mum WinForm Application ' 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.Windows.Forms Namespace HelloFrm Public Class HelloFrm Inherits Form 'Run the application Shared Sub Main() Application.Run(New HelloFrm()) End Sub Public Sub New() MyBase.New() Me.Text = "Hello Mum" End Sub End Class End Namespace