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();
