In VB script you assign callbacks using
GetRef
Function OnProgress(..
End Function
x.OnProgress = GetRef("OnProgress")
GetRef is not available in VB.
How to do the same in VB?
Douglas Marquardt - 19 Aug 2005 13:50 GMT
Perhaps AddressOf is what your looking for?
hth,
Doug.
> In VB script you assign callbacks using
> GetRef
[quoted text clipped - 6 lines]
> GetRef is not available in VB.
> How to do the same in VB?