BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridControl1_CurrentCellShowedDropDown(object sender, System.EventArgs e) { GridDropDownGridListControlCellRenderer cr = this.gridControl1.CurrentCell.Renderer as GridDropDownGridListControlCellRenderer; if(cr != null) { //cr.ListControlPart.CausesValidation = false; cr.ListControlPart.Focus(); } }The way to get this to work without this focus issue is handle WM_NOTIFY and reflected messages in teh grid''s WndProc. We have not done this yet.
>private void gridControl1_CurrentCellShowedDropDown(object sender, System.EventArgs e) >{ > GridDropDownGridListControlCellRenderer cr = this.gridControl1.CurrentCell.Renderer as GridDropDownGridListControlCellRenderer; > if(cr != null) > { > //cr.ListControlPart.CausesValidation = false; > cr.ListControlPart.Focus(); > } >} >> >The way to get this to work without this focus issue is handle WM_NOTIFY and reflected messages in teh grid''s WndProc. We have not done this yet. >