devxlogo

A VarPtr substitute function for VB4

A VarPtr substitute function for VB4

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

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist