Custom Renderer

Hi, May be you can help me. I use a Custom Renderer based on GridCellRendererBase. The Control which takes the focus has overriden then ProcessCmdKey method When it is placed standalone on a Form it works fine. When it is activated from Renderer if I press the Keys.Back (this is my problem) and I leave it to base.ProcessCmdKey (under certain circumstances) then I receive an ArgumentException from system.windows.forms.dll. ''-1'' is not a valid value for ''start''. The GridSelectionMode is set to .One. but it does not influense. Do you have any good advice ? Thanks Stefan

1 Reply

AD Administrator Syncfusion Team February 27, 2005 05:30 PM UTC

To avoid the problem, try this. If TextBox.SelectionStart == 0 and TextBox.SelectionLength == 0, just set e.Handled = true and do not call the baseclass.

Loader.
Up arrow icon