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 |
which VB constant make the menu item in centre?
Explain Default cursor Type and LockEdits type in RDO?
What does Query_unload event do in VB? Why we need Form _unload event?
What is DDE?
How would you run your ActiveX Document Dll?
What are the types of Error?
what are the Differences between variables defined as public in a standard module (.bas) file and a Class file?
How many max. number of controls can place in one form (especially visual basic form)?
What is dao in vb?
What are the Internet tools available in VB 6.0?
In which areas the Error occurs?
What is the max size of textbox?