Bug? B4A 5.20 - Select Case Intellisense

Jeffrey Cameron

Well-Known Member
Licensed User
Longtime User
This bug has actually been happening since 5.0, but I'm only reporting now after upgrading to 5.20.

When you create a Select Case Statement and get to the "Case Else" after you type "Case Else" and hit enter the Intellisense changes the "Case Else" to "Case CancelScheduledService" (note that you do not hit the space bar after the "else", hit [Enter] after typing the last "e").

For example, create the following case statement, pressing [Enter] after the last character on each line:
B4X:
    Dim piTemp As Int = 1
    Select Case piTemp
        Case 1
        Case 2
        Case Else
    End Select
 
Top