Hi there!
1.) IncludeFile and XIncludeFile should always be relative to the File's Path, they are called from, not from the main compiler-File.
Example showing the problem:
Code:
;File Main.pb:
IncludePath "MyFrame/"
IncludeFile "Frame1/Inc.pb"
IncludePath ""
Code:
;File MyFrame/Frame1/Inc1.pb:
IncludeFile "var.pb" ;How should var.pb know, where it comes from?
A possibility to nest IncludePath would be nice too, perhaps using EndIncludePath to finish this (PB-steady syntax)
2.)
Code:
IncludeFile "Test.pb"
IncludePath "MyFrame/"
IncludeFile "Frame1/Inc.pb"
IncludePath ""
DoubleClicking on Test.pb gets me to the file (it's opened in the ide)
DoubleClicking on Frame1/Inc.pb doesn't do so, since it's in a subfolder defined by IncludePath. Shouldn't be such a big problem to get this working, should it?
Greetings
Franky