S sorex Expert Licensed User Longtime User Aug 22, 2016 #1 Erel, for some reason the parser is freaking out on the line below. chaning the first ")" to something else makes it compile but not with the data that I want B4X: Dim buttonBarItemsSoundText(2) As String=Array As String(")","(")
Erel, for some reason the parser is freaking out on the line below. chaning the first ")" to something else makes it compile but not with the data that I want B4X: Dim buttonBarItemsSoundText(2) As String=Array As String(")","(")
S sorex Expert Licensed User Longtime User Aug 22, 2016 #2 it can be solved as shown below... B4X: Dim buttonBarItemsSoundText(2) As String=Array As String( Chr(0x29) , "(" ) altho it's still a bug. thanks @ggpanta for the hint on the chat!
it can be solved as shown below... B4X: Dim buttonBarItemsSoundText(2) As String=Array As String( Chr(0x29) , "(" ) altho it's still a bug. thanks @ggpanta for the hint on the chat!
Erel B4X founder Staff member Licensed User Longtime User Aug 23, 2016 #3 It is fixed for the next update. Another possible workaround: B4X: Array As String((")"),"(")