I am re-visiting modifying the KeyDown method in xBrowse to include the use of the TAB key to be able to move right one cell ..
I can modify xBrowse with this change :
- Code: Select all Expand view
case nKey == VK_TAB // added rick lipkin
if GetKeyState( VK_CONTROL )
::GoRightMost()
else
::GoRight()
endif
But I do not want to make the same change as I upgrade from one FWH to another. I have looked at the Sub-Classing example ( xBrChild.prg ).. but I do not seem to be able to adapt the above code.
I would appreciate any suggestions on how to modify the entire KeyDown method and apply the above modification to my code.
Thanks
Rick Lipkin