you cannot call something until it is defined
--
Cheers
Graham Kav
AFL Writing Service
http://www.aflwriting.com
On 14/09/2007, dralexchambers <[EMAIL PROTECTED]> wrote:
> Hi - This may be a really simple one, but I couldn't find an answer...
>
> Is it possible to declare procedures in advance to stop a syntax
> error:
>
> doSL_Trail();
>
> procedure doSL_Trail()
> {
> a=1;
> }
>
> This gives a syntax error.
>
> If I do the following below it is OK, but I want to place the
> procedure code after the calling "doSL_Trail();" code as in the code
> above.
>
> procedure doSL_Trail()
> {
> a=1;
> }
>
> doSL_Trail();
>
>