Bug? parser bug?

sorex

Expert
Licensed User
Longtime User
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(")","(")
 

sorex

Expert
Licensed User
Longtime User
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!
 
Top