Yes, you are correct.!
That's another reason why I like to use the CALL statement
--
Saludos, Ing. Jorge Jimenez, SICAD S.A., Costa Rica
(sorry, phony e-mail, SPAM made me do it)
"Laurie Comerford" wrote in message
news:403fd1d0_1@newsprd01...
> Hi,
>
> Although I never use it myself as it requires extra typing, one advantage
of
> Call is that the parameters are always required to be placed in brackets
so
> your typing conventions can be more consistent.
>
> Given:
> Function MyMacro (Parameter1, Parameter2) as Integer
> ....
> End Function
>
> The three lines below are viable
> MyMacro Parameter1, Parameter2
> ReturnedInteger = MyMacro (Parameter1, Parameter2)
> CALL MyMacro (Parameter1, Parameter2)
> while the three below here aren't
> MyMacro (Parameter1, Parameter2)
> ReturnedInteger = MyMacro Parameter1, Parameter2
> CALL MyMacro Parameter1, Parameter2
>
>
> Laurie Comerford
> CADApps
> www.cadapps.com.au
>
>
> "Jorge Jimenez" wrote in message
> news:403fce94_1@newsprd01...
> > Yeah, it's an old habit of many.
> > I feel better using CALL, it's easier when you're doing a visual
debugging
> > and makes code alot easier to read.
> >
> > --
> > Saludos, Ing. Jorge Jimenez, SICAD S.A., Costa Rica
> > (sorry, phony e-mail, SPAM made me do it)
> >
> > "Ben" wrote in message
> > news:Ben.12b2fy@vbdesign.net...
> > >
> > > Just for my own FYI,, I thought Call had gone the way of Let, and
wasn't
> > > required anymore?
> > >
> > >
> > > --
> > > Ben - cheesy creamy cheesy
> > >
> > > My mother called me that once.... once!
> >
> ------------------------------------------------------------------------
> > > Ben's Profile:
> > http://www.vbdesign.net/expresso/member.php?action=getinfo&userid=201
> > > View this thread:
> > http://www.vbdesign.net/expresso/showthread.php?threadid=59845
> > >
> >
> >
>
>