XIncludeFile in a module
Posted: Sun Aug 18, 2013 10:18 am
Hiho,
If you include a file with XIncludeFile in your main source and then try to do the same in a modul it wont work.
test.pbi
test.pb
But shouldn't this work because the modul is a seperated code block?
Mfg Nero
If you include a file with XIncludeFile in your main source and then try to do the same in a modul it wont work.
test.pbi
Code: Select all
Structure Test
a.l
EndStructure
Code: Select all
XIncludeFile "./test.pbi"
abc.Test
DeclareModule MyModul
XIncludeFile "./test.pbi"
EndDeclareModule
Module MyModul
defg.Test
EndModule
Mfg Nero