PureBytes Links
Trading Reference Links
|
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
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|