How can I get a pointer to the class of the current function? I mean like this:
Code:
'In class cTest
Function SetNumber( iLast as cTest ) as Long
   Number = iLast.Number + 1

   Call SetNumber( Me )
End Function
I know ways to make the function above, I only need to know how to get the pointer.