Hi,
In the editor, the code source can be very long. For avoiding to scroll up and down in a large file (even if you use regions), is it possible to add include directives to cut the file in several pieces ?
In the editor, the code source can be very long. For avoiding to scroll up and down in a large file (even if you use regions), is it possible to add include directives to cut the file in several pieces ?
B4X:
main.bas
Sub Globals
...
End Sub
#include ("firstpart.bas")
Sub anothersub
...
end sub
firstpart.bas
Sub something
...
End Sub
...