home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 5_2007-2008.ISO / data / Zips / Realtime_I2062144242007.psc / iSuperClass.cls < prev    next >
Text File  |  2007-04-24  |  1KB  |  43 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 = "iSuperClass"
  10. Attribute VB_GlobalNameSpace = False
  11. Attribute VB_Creatable = True
  12. Attribute VB_PredeclaredId = False
  13. Attribute VB_Exposed = False
  14. '------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  15. 'Name.......... iSuperClass
  16. 'File.......... iSuperClass.cls
  17. 'Dependencies.. Meaningless without cSuperClass
  18. 'Description... cSuperClass implemention interface model as used by cSuperClass to report window messages
  19. '               to the owner of the cSuperClass instance. ??? look up implements in VB help ;>)
  20. 'Author........ Paul_Caton@hotmail.com
  21. 'Date.......... June, 13th 2002
  22. 'Copyright..... None.
  23.  
  24. Option Explicit
  25.  
  26. Public Sub After(ByRef lReturn As Long, ByVal hWnd As Long, ByVal uMsg As Long, ByVal wParam As Long, ByVal lParam As Long)
  27.  
  28.   '
  29.   'lReturn  - Will contain the return value from the previous WndProc, populate it yourself as the message/situation/Windows dictates
  30.   '
  31.   'hWnd     - Handle of the window
  32.   '
  33.   'uMsg     - Message number
  34.   '
  35.   'wParam   - Message related data
  36.   '
  37.   'lParam   - Message related data
  38.   '
  39.   
  40. End Sub
  41.  
  42.  
  43.