My projects generally have lots of files for loading at runtime (images/sounds), and I keep everything tidily in a sub-folder as good practice. This means that users don't have to clog up their root QB64 folder and can delete the project folder easily. You have to have the Output exe to source folder option checked.
In a project I'm working on I've also got the following statements:
'$INCLUDE:'InForm.ui'
'$INCLUDE:'xp.uitheme'
'$INCLUDE:'Duck Shoot.frm'
There are no modifiers for the file names. This works OK for the computer where I'm creating and editing the project, but when I take the project folder to another computer it says it cannot locate these files.
What should be the correct format for the $INCLUDE: statements? (I remember that I came across this previously, but can't remember what I changed to get everything to work.).