I read through KB Article: KB02028 which shows a Sub to make the Enter key act like the Tab key when hit while in the UltraGrid. However it does not explain how to call it or when to call. Does anyone have any advice as how to implement it?
Thanks
Gary
Hi Gary,
The code in this sample is modifying the grid's KeyActionMapping collection. So you can call this code from anywhere you want. It just needs to be called once, up front, to modify the grid for the lifetime of the control.
So the Form_Load event it a good place to call this method and you would call it once for each UltraGrid on the form.
Mike,
Thanks, gave it a try and it worked like a charm. However I called it from the Grid's InitializeLayout event putting it with other initializing stuff.