Hello.
This is being posted to the `general` section, not the `database` one, as the datagrid/database side of things works fine.
I can navigate records using the mouse, on the adodc scroll bar, and using the keyboard/mouse on the datagrid.
However, I added a keyboard handler, to read the up/down keys...which it successfully does (ie it hits a breakpoint) I then call the datagrids scroll method, as follows:
Case vbKeyDown
call GrdEmployeesInfo.Scroll(0, 1)
Case vbKeyUp
call GrdEmployeesInfo.Scroll(0, -1)
so it should move go through the records a row at a time. But nothing happens.
Am i doing something wrong, forgetting to do something etc... ? What i want is for the next/previous record to be selected.
Thanks,
Alex.
