home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2003 January / PCpro_2003_01.ISO / born / IDE / DotNET-IDE / Templates / Win32AppClass.vb < prev   
Encoding:
Text File  |  2002-08-21  |  481 b   |  21 lines

  1. '************************************************
  2. ' File:  Win32App.vb  (21-Aug-2002)
  3. ' Author: G. Born www.borncity.de
  4. '
  5. ' Empty Class with Main Sub, Creates a Dialogbox
  6. '
  7. ' Compile with:
  8. ' vbc <name>.vbs /t:winexe /Win32Icon:<name>.ico
  9. '************************************************
  10. Option Strict
  11.  
  12. Imports Microsoft.VisualBasic
  13.  
  14. Class Test
  15.  Shared Sub Main()           ' Main procedure
  16. ' insert your code here
  17.   MsgBox ("Hello world!")
  18.  
  19.  End Sub
  20. End Class
  21.