In the top examole you are calling the procedure before you define it ... 
produces error.

Lower case is correct.


----- Original Message ----- 
From: "dralexchambers" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Thursday, September 13, 2007 12:47 PM
Subject: [amibroker] Declare a procedure


> 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();
>
>
>
> Please note that this group is for discussion between users only.
>
> To get support from AmiBroker please send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> 

Reply via email to