Please take a look at the image and tell me how I can remove the (arraylist) and Brackets from the message box. The code is below.
B4X:
aList.Initialize()
Dim cursor As Cursor
cursor=SQL1.ExecQuery("select TeamName from GamePlay")
For i = 0 To cursor.rowcount -1
cursor.position = i
aList.add(cursor.getstring("TeamName"))
Next
Msgbox(aList & " have tied.","Tie Game")
btngameplay.Text = "Team " & SQL1.ExecQuerySingleResult("SELECT teamname FROM GamePlay where ID = '" & tid & "'") & " START"