I have put the following code in the CellKeyDown to try and get the
cursor to move to the next editable cell in the multicolumn listbox
Dim TAB As String = Encodings.UTF8.Chr(9)
If key = TAB Then
If column < Me.ColumnCount - 1 Then
Me.EditCell(row, column + 1)
End If
End If
This does not work for me. I end up Tabbing to the next control in
the window rather than staying in the listbox and just going to the
next cell.
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>