home *** CD-ROM | disk | FTP | other *** search
- '************************************************
- ' File: Win32App.vb (21-Aug-2002)
- ' Author: G. Born www.borncity.de
- '
- ' Empty Class with Main Sub, Creates a Dialogbox
- '
- ' Compile with:
- ' vbc <name>.vbs /t:winexe /Win32Icon:<name>.ico
- '************************************************
- Option Strict
-
- Imports Microsoft.VisualBasic
-
- Class Test
- Shared Sub Main() ' Main procedure
- ' insert your code here
- MsgBox ("Hello world!")
-
- End Sub
- End Class
-