One new feature of version 5.50 is code outlining (code folding).
You can use it to organize your code into blocks.
Each sub can be folded.
Using #Region ... #End Region you can manually declare blocks of code that will be foldable and also will be folded by default when you load the file.
That way you can easily navigate large code.
Note that you can add a description next to #Region.
Example:
You can use it to organize your code into blocks.
Each sub can be folded.
Using #Region ... #End Region you can manually declare blocks of code that will be foldable and also will be folded by default when you load the file.
That way you can easily navigate large code.
Note that you can add a description next to #Region.
Example:
B4X:
#Region Form1 Block
Sub Form1_Show
...
End Sub
Sub SomeSub
...
End Sub
...
#End Region