Both VB5 and VB6 include a hidden function, named VarPtr, that returns the address of a variable. Many advanced tricks and routines, on VB2TheMax or other site, use this function. However, VB4 doesn’t directly support VarPtr, so it seems that you can’t use such routines with those older versions of the language.
It turns out, however, that the VarPtr function is present in the runtime DLL, so you only need the proper Declare function to use it:
#If Win16 Then Declare Function VarPtr Lib "VB40016.DLL" (variable As Any) As Long#Else Declare Function VarPtr Lib "VB40032.DLL" (variable As Any) As Long#End If
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























