home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / SourceCode558122182002.psc / SCO / cDirItem.cls < prev    next >
Encoding:
Visual Basic class definition  |  2002-02-18  |  791 b   |  34 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4.   Persistable = 0  'NotPersistable
  5.   DataBindingBehavior = 0  'vbNone
  6.   DataSourceBehavior  = 0  'vbNone
  7.   MTSTransactionMode  = 0  'NotAnMTSObject
  8. END
  9. Attribute VB_Name = "cDirItem"
  10. Attribute VB_GlobalNameSpace = False
  11. Attribute VB_Creatable = True
  12. Attribute VB_PredeclaredId = False
  13. Attribute VB_Exposed = False
  14. Option Explicit
  15.  
  16. Public ReadOnly As Boolean
  17. Public Hidden As Boolean
  18. Public System As Boolean
  19. Public Directory As Boolean
  20. Public Archive As Boolean
  21. Public Normal As Boolean
  22. Public Temporary As Boolean
  23. Public Compressed As Boolean
  24. Public Offline As Boolean
  25.  
  26. Public CreationTime As Date
  27. Public LastAccessTime As Date
  28. Public LastWriteTime As Date
  29.  
  30. Public FileSize As Long
  31. Public Filename As String
  32.  
  33.  
  34.