devxlogo

Use the Object Library Name When Dimming Object Variables

Use the Object Library Name When Dimming Object Variables

I always put the word DAO in front of all references to DAO objects. Here are some examples:

 Dim Db  As DAO.DataBaseDim rs  As DAO.Recordset

This way, VBA knows what library to look in for the definition of DBEngine (the top object). If you don’t do this, VBA surfs the references collections to find it. You can also use the word VBA in front of functions (Left$, Mid$, MsgBox, and so on) and write the subroutine or function like this:

 Public Sub MsgBox ()VBA.Msgbox "The new way to use VBA :-)", vbInformation + _	vbOkonly, "VBPJ TechTip Section"End SubPrivate Sub  Form_Load()	'Call the MsgBox Sub 	MsgBoxEnd Sub
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