devxlogo

Watch the Parens

Watch the Parens

If you want to pass a parameter to a subroutine, use this code:

 	Call doFormat(txtPerson)

You can also call the subroutine without the Call statement. However, if you don’t include the Call statement, you can’t include parentheses:

 	doFormat (txtPerson)

In VB, expressions in parentheses are evaluated before they’re processed. So by putting parentheses around the control name, you’re telling it to evaluate it. Because a control can’t be evaluated, it gives you the value of the default property. This code actually passes the Text string value-because Text is the default property-to the subroutine instead of passing the control. Because the routine expects a textbox and not a string, it generates the type mismatch.

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