home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual BASIC 5.0 (Ent. Edition) / Vb5ent Extractor.EXE / VB / SAMPLES / ENTRPRIS / INTRFACE / GETDATE.CLS next >
Encoding:
Text File  |  1996-11-23  |  230 b   |  12 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "InterfaceDateClass"
  6. Attribute VB_Creatable = True
  7. Attribute VB_Exposed = True
  8. Public Function GetDate() As String
  9.     GetDate = Date
  10. End Function
  11.  
  12.