Bug? B4A 5.20 beta - Autocompletion does not work "recursive"

DonManfred

Expert
Licensed User
Longtime User
This is the code i finally wanted to create
B4X:
    Dim c As Cursor
    c = cp.Calendars
    If c.RowCount > 0 Then
        For i = 0 To c.RowCount-1
            c.Position = i
            Dim colcount As Int = c.ColumnCount
            Log("columns="&colcount)
            For o = 0 To colcount -1
                Log(c.GetColumnName(o)&"="&c.GetString(c.GetColumnName(o)))              
            Next              
        Next
    End If


B4X:
    Dim c As Cursor
    c = cp.Calendars
    If c.RowCount > 0 Then
        For i = 0 To c.RowCount-1
            c.Position = i
            Dim colcount As Int = c.ColumnCount
            Log("columns="&colcount)
            For o = 0 To colcount -1
        Next
    End If
I expected to get an NEXT autocompleted after i pressed enter after the -1 in the inner FOR loop but i dont got one.

Bug?
 
Top