enjoyit
2016-03-24T13:14:07Z
I received my licence today so please be lenient :D

Is it possible ro raise a click event if I select a row via cursor key (up/down)?

I'm loading additional information to the row with the click event, so it would be nice if the user can move through the rows via cursor keys and not only via mouseclicks.

regards...
enjoyit
2016-03-24T13:43:01Z
FYI

I found a working solution:


Dim arr() As TSelItemInfo

    arr() = lf_object.SelItems.GetArray
    
    Select Case KeyCode

        'Cursor Up
        Case 38: MsgBox lf_object.CellText(arr(1).Row, 1)
    
        'Cursor Down
        Case 40: MsgBox lf_object.CellText(arr(1).Row, 1)
        
    End Select
Igor/10Tec
2016-03-25T07:00:59Z
Maybe, CurCellChange or CurRowChange event?
enjoyit
2016-03-29T12:59:25Z
Hi,

CurRowChange works like a charm! 🙂