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 / APE / INCLUDE / CLSWKMAC.CLS < prev    next >
Encoding:
Visual Basic class definition  |  1996-09-19  |  1.2 KB  |  27 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "clsWorkerMachines"
  6. Attribute VB_GlobalNameSpace = False
  7. Attribute VB_Creatable = False
  8. Attribute VB_PredeclaredId = False
  9. Attribute VB_Exposed = False
  10. '-------------------------------------------------------------------------
  11. 'This class is used for storing related data
  12. 'that will be added to a collection
  13. 'Stores a Machine name that Workers are instanciated on
  14. '-------------------------------------------------------------------------
  15. Public MachineName As String        'Machine name
  16. Public WorkerProvider As AEWorkerProvider.WorkerProvider    'Server that can be instanciated on remote
  17.                                     'machines to provide Worker objects
  18. Public Remote As Boolean            'If true, this represents a remote machine
  19.                                     'rather that the local machine.
  20. Public WorkerKeys As Collection     'Collection of longs, representing the keys
  21.                                     'of Workers stored in the gcWorkers collection
  22.                                     'that are on the machine represented by this
  23.                                     'object
  24. Private Sub Class_Initialize()
  25.     Set WorkerKeys = New Collection
  26. End Sub
  27.