G'day
When calling a procedure from within another procedure is it proper form to
use "Call" with the procedure name or just specify the procedure?? Or is it
just personal preference??
E.g.
Sub MyCode()
More Code
Call mySubCode or should this be simply mySubCode
End Sub
JE McGimpsey - 30 Mar 2005 06:00 GMT
> G'day
> When calling a procedure from within another procedure is it proper form to
[quoted text clipped - 8 lines]
> >
> End Sub
Either is "proper". Which you use is largely a matter of personal
preference. Note that the syntax is different if you have arguments
(Call requires that arguments be contained within parens) and that Call
discards any return values.
Most programmers that I know don't use Call.