Difference between ByRef and ByVal?



Difference between ByRef and ByVal?..

Answer / suresh

Only a copy of a variable is passed when an argument is
passed by value. If the procedure changes the value, the
change affects only the copy and not the variable itself.
Use the ByVal keyword to indicate an argument passed by
value.

Passing arguments by reference gives the procedure access
to the a1ctual variable contents in its memory address
location. As a result, the variable's value can be
permanently changed by the procedure to which it is passed.
Passing by reference is the default in Visual Basic.
If you specify a data type for an argument passed by
reference, you must pass a value of that type for the
argument. You can work around this by passing an
expression, rather than a data type, for an argument.
Visual Basic evaluates an expression and passes it as the
required type if it can.

Is This Answer Correct ?    4 Yes 0 No

Post New Answer

More Visual Basic Interview Questions

which VB constant make the menu item in centre?

1 Answers  


Explain Default cursor Type and LockEdits type in RDO?

0 Answers  


What does Query_unload event do in VB? Why we need Form _unload event?

3 Answers  


What is DDE?

0 Answers  


How would you run your ActiveX Document Dll?

0 Answers  


What are the types of Error?

1 Answers   IBM,


what are the Differences between variables defined as public in a standard module (.bas) file and a Class file?

2 Answers   CTS, Technocrats,


How many max. number of controls can place in one form (especially visual basic form)?

6 Answers   Satyam,


What is dao in vb?

0 Answers  


What are the Internet tools available in VB 6.0?

0 Answers  


In which areas the Error occurs?

0 Answers  


What is the max size of textbox?

1 Answers  


Categories