home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_07.cab / VBSimple.cls < prev    next >
Encoding:
Visual Basic class definition  |  1997-08-20  |  306 b   |  16 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "VBSimple"
  6. Attribute VB_GlobalNameSpace = False
  7. Attribute VB_Creatable = True
  8. Attribute VB_PredeclaredId = False
  9. Attribute VB_Exposed = True
  10.  
  11. Function helloText() As String
  12.  
  13.     helloText = "Hello, World!"
  14.  
  15. End Function
  16.