For FF to find my own INC files, I have to specify the full path+name after the #INCLUDE, rather than just the name. As I'm very new to FF, I'm wondering if this is normal or whether I've missed something.
-- Martin
If your includes are not in the "Release" folder for the project then you need to either a full path or relative path (ie. .\ or ..\) to the file. I always put my Include files in the "modules" folder and access them as
follows:
#Include "..\modules\myinclude.inc"
OK, thanks for that.
-- Martin