
-----------------------------------
Raknarg
Tue Apr 17, 2012 6:15 pm

Mutible parameters
-----------------------------------
In turing, you can do something like this:

proc thing (var x : int)

and then when you used the procedure thing, you can change the parameter inside the procedure and it'll change the variable outside the procedure.

So is there a way to make subs with mutible parameters in vb?

-----------------------------------
Tony
Tue Apr 17, 2012 6:21 pm

RE:Mutible parameters
-----------------------------------
pass-by-value vs. pass-by-reference

-----------------------------------
Raknarg
Tue Apr 17, 2012 6:22 pm

RE:Mutible parameters
-----------------------------------
Could you explain a bit more?

-----------------------------------
Tony
Tue Apr 17, 2012 6:38 pm

RE:Mutible parameters
-----------------------------------
this is the terminology that you want to understand and use, so that you can ask the question that you have in mind -- "pass by reference vb", which will point you to the answer available on http://msdn.microsoft.com/en-us/library/ddck1z30.aspx

-----------------------------------
Raknarg
Tue Apr 17, 2012 6:58 pm

RE:Mutible parameters
-----------------------------------
Alright, thanks
