Hi,
No, INCLUDE will put the content of the file exactly where the INCLUDE statement is located. Variables must be prior to them being used.
Code:
' This will work
Test VAR BYTE
Test = 5
Code:
' This will not work
Test = 5
Test VAR BYTE
/Henrik.