VBA (Visual Basic for Applications) Question:

Explain What do ByVal and ByRef mean and which is the default?

Tweet Share WhatsApp

Answer:

If you pass an argument by reference when calling a procedure, the procedure access to the actual variable in memory. As a result, the variable's value can be changed by the procedure.
If you pass an argument by value when calling a procedure, the variable's value can be changed with in the procedure only outside the actual value of the variable is retained.

Passing by reference is the default in VBA. If you do not explicitly specify to pass an argurment by value, VBA will pass it by reference.

Argument Passing ByVal
Describes passing arguments by value, which means the procedure cannot modify the variable itself.

Argument Passing ByRef
Describes passing arguments by reference, which means the procedure can modify the variable itself.

Download VBA PDF Read All 39 VBA Questions
Previous QuestionNext Question
Explain Which Property is used to compress a image in image control?Explain Which property of textbox cannot be changed at
runtime and what?s the maximum size of a textbox?