Answer Posted / 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 View All Answers
What are the types of line styles available in Treeview Control?
What is "Reserved Error -1209"?
What is the use of Immediate, Local Window?
Why does everybody say I should save in TEXT not BINARY?
How should dates be implemented so they work with other language and country formats?
How many ways we can access file using VB?
Write the steps in Creating ActiveX Dll and Active Exe?
How can I call a 'hidden' DOS program from VB?
What is the use of Visual Basic Document file?
Advantage of ActiveX Dll over Active Exe.
Which method is preferred to save datas like database?
How do I force a file dialogue box to reread the currect disk?
____ property is used to lock a textbox to enter a datas.
What is the difference between Msgbox Statement and MsgboxQ function?
Which property of textbox cannot be changed at runtime. What is the max size of textbox?