Bug? Issue with Select Case autocomplete

NeoTechni

Well-Known Member
Licensed User
Longtime User
Auto-complete will never popup when I do a Select-Case, with the case:code on a single line

ie:
B4X:
Select case i
case i: docode()
end select

I have to separate the code to get it to work
B4X:
Select case i
case i
docode()
end select
 
Top