ah, i have just noticed something (which i wouldnt have if i wasn't asked to upload something)
if i have VVForm.simba in the same folder as the script then it will fail, but if it is in another folder then it wont
e.g.
script and VVForm file are in "c:/Users/Thomas/Scripts"
This produces a error
however if i move the script somewhere else so it is not in the same directory as VVForm such as the desktop then it does not
i keep both files in the same folder for development purposes
~shut
EDIT: a quick and easy way to reproduce this would be to
make a file with this in it
Simba Code:
{$include testing.simba}
begin
end;
now in the includes folder make a blank file called testing.simba and copy the file and paste it where you saved the script above
so you should then have something like
C:/Simba/Includes/testing.simba
C:/testing.simba
C:/thebug.simba
run it and it will come up with a error, but if you delete the file that is with the script so you are left with
C:/Simba/Includes/testing.simba
C:/thebug.simba
then you wont have the problem