Use of ME

Category: Objects

Date: 02-16-2022

Return to Index


 
Class Methods are always accessed using pseudo-object ME.
 
'Compilable Example:  (Jose Includes)
#Compile Exe
Function PBMain() As Long
   Local X As MyInterface
   Let X = Class "MyClass"
   X.SS
End Function
 
Class MyClass
  Instance Value As String
  Class Method MM() : ? "bingo" : End Method
  Interface MyInterface
    Inherit IDispatch
    Method SS() : MM : End Method
  End Interface
End Class  
   
'gbs_01356
'Date: 05-11-2013 


created by gbSnippets
http://www.garybeene.com/sw/gbsnippets.htm