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 / AECLIENT / CLSCNTSV.CLS < prev    next >
Encoding:
Text File  |  1996-08-03  |  652 b   |  19 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "clsClientService"
  6. Attribute VB_Creatable = False
  7. Attribute VB_Exposed = False
  8. Option Explicit
  9. '-------------------------------------------------------------------------
  10. 'This class is used a structure for information about expected
  11. 'Service Request callbacks.  Objects of this class are
  12. 'added to the gcService collection
  13. '-------------------------------------------------------------------------
  14.  
  15. Public lID As Long          'Service Request ID
  16. Public sCommand As String   'Service Request Command
  17. Public lStartTicks As Long  'Tick Count of when call was made
  18.  
  19.