devxlogo

Implementation of Public Forms and Class Variables

Implementation of Public Forms and Class Variables

The implementation of Public variables in forms and classes changed with Visual Basic 5.0. VB4 implementspublic variables in forms and class modules as if they’re regular variables, using pointers to data in memory.In VB5, public variables are more correctly implemented as a pair of hidden Get/Let property procedures.This approach slows down these properties when the program is ported from VB4 to VB5.More importantly, this change likely breaks any code that relies on passing such variables to procedures asByRef arguments and expects that the procedure modifies them. In fact, under VB5, they’re passed byvalue, and the original property is never affected. For more information on this issue, see article Q166928 inthe Microsoft Knowledge Base.

See also  Why ChatGPT Is So Important Today
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