Android Question LEFT SIDEBAR COLORS

rfhall50

Member
Licensed User
Longtime User
Reference the screenshot below.
Can anyone tell me what the colors mean in the left sidebar. They are between line sequence numbers and code. In this example they are obviously green and yellow. AND, are there any other colors that I have not seen yet.
Thank You.
Bob
upload_2016-7-10_10-42-1.png
 

Attachments

  • upload_2016-7-10_10-40-13.png
    upload_2016-7-10_10-40-13.png
    94.9 KB · Views: 120

udg

Expert
Licensed User
Longtime User
Yellow = code modified but not saved/committed yet
Green = code modified and then saved/committed
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
BTW, I recommend you to avoid writing such code. You should avoid repeating the same code or similar code multiple times.

B4X:
Dim booleans() As Boolean = Array As Boolean (MissesField.Text <> Null, ProctTB.Checked, False, SDQToggle.Checked, ...
For i = 0 To booleans.Length - 1
Dim v As String
if booleans(i) Then v = "Y" Else v = "N"
ScoringTable(CurrentShooter, (CurrentStage * 10) + i + 1) = v
Next
'deal with MSFld which is special
 
  • Like
Reactions: udg
Upvote 0
Top