does pb procedure support pass by reference, you know,
like func(a,b,c,d)
a = a* 2
....
where after the func is called, the value of a, b, c & d is changed
thanks.
pass by reference
Re: pass by reference
something like this?
Code: Select all
Procedure LikeThis(*a.LONG)
*a\l = 5
EndProcedure
LikeThis(b.LONG)
Debug b\l
Good programmers don't comment their code. It was hard to write, should be hard to read.

