home *** CD-ROM | disk | FTP | other *** search
- '************************************************
- ' File: Test1.vb
- ' Autor: G. Born www.borncity.de
- ' Gibt unter Windows ein Dialogfeld aus.
- ' ▄bersetzen mit:
- ' vbc Test1.vb /t:winexe /win32icon:born.ico
- '************************************************
- Imports Microsoft.VisualBasic
- Class Test
- Shared Sub Main
- MsgBox ("Hallo Welt", _
- vbOkOnly Or vbInformation, _
- "VB-Test")
- End Sub
- End Class
-