Passing An Object’s Property As a Parameter

When you pass a read-writable property directly as a ByRef parameter to a function or subroutine, the property will not be changed. This is because in VB 6.0 or previous versions, the parameter will be copied to stack as specified data type, but the object is not referenced. Try the following example:

 Sub Test()    Dim oMyObj As CMyClass    Set oMyObj = New CMyClass    Call GetName(oMyObj.MyName)    ' oMyObj.MyName will be empty string.    Debug.Print

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