home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2003 January / PCpro_2003_01.ISO / born / Beisp / Test1.vb < prev    next >
Encoding:
Text File  |  2002-10-15  |  444 b   |  16 lines

  1. '************************************************
  2. ' File:  Test1.vb 
  3. ' Autor: G. Born www.borncity.de
  4. ' Gibt unter Windows ein Dialogfeld aus.
  5. ' ▄bersetzen mit:
  6. ' vbc Test1.vb /t:winexe /win32icon:born.ico
  7. '************************************************
  8. Imports Microsoft.VisualBasic
  9. Class Test
  10.  Shared Sub Main
  11.      MsgBox ("Hallo Welt", _
  12.               vbOkOnly Or vbInformation, _
  13.              "VB-Test")
  14.  End Sub
  15. End Class
  16.