I reported that years ago (and I forgot the result).
I was unable to connect to the internet 'till minutes ago and so, I was fooling around and falled into that.
I created a new empty project (2015r1),
add a Listbox (20,20, 560,360),
set the ColumnWidths to 100
and add two Events with code:
[code]Sub DoubleClick()
Dim row,column As Integer
Row = Me.RowFromXY(System.MouseX - Me.Left - Self.Left, System.MouseY - Me.Top - Self.Top)
Column = Me.ColumnFromXY(System.MouseX - Me.Left - Self.Left, System.MouseY - Me.Top - Self.Top)
Me.CellType(Row,Column) = ListBox.TypeEditable
Me.EditCell(Row,Column)
Me.CellType(Row,Column) = ListBox.TypeNormal
End Sub[/code]
Sub Open()
Me.AddRow "Cell 0, Row 0"
End Sub
Run,
Double click in the non existant second column, row 0 area and get the Editable TextArea.
Must I report a bug ?
PS: there is no other code nor change from the default Listbox.
Edit:
I knew I forgot something, but what ?
Also tested with Xojo 2019r1 and same result: I am able to edit a non existant Cell, type data that are lost when I exit the non existant cell.