B4A Next Version

Scantech

Well-Known Member
Licensed User
Longtime User
I read somewhere that Main File can be splitted in the next version? Is it true? I have 5K lines in Main and beginning to be difficult scrolling around and looking for something. Talk about bad coding technique. :)
 
Last edited:

evilpaw

Member
Licensed User
Longtime User
You can also use Region code block and collapse blocks of code that you dont need to see.
B4X:
       #Region  <<:: Simple Code block ::>>
   Dim sMessage As String 
   
   sMessage = "Simple application" & CRLF
   sMessage = sMessage & "Build version  1.1.1"



   Msgbox( sMessage,"About")
   
   #End Region
 
Upvote 0
Top