or
i'm using RadGridView control to expose data, i added columns type of GridViewComboBoxColumn,
when you clik on certain cell to edit, it will be shown as ComboBox.My question is:
How to access the combobox in the RadGridView to get the selected values or item ?
Any Help will be appreciated!!!
Thanks in advance...
Asa'ad....

I am not able to set the height of RadRibbon Bar in Winforms.
Please review the attached file.
When I set the Min Size/Max Size properties under root element, the border is getting truncated.
Can anyone help me on this.
you can reach me at saikiran@mediennetworks.com
Thanks
Kiran

private void LlenarRestaurantes () { SqlDataReader dr ; SqlCommand cmd; string Sqlstring; Sqlstring = " SELECT '(' + rtrim(RE.sNumeroRestaurante) + ') ' + RE.sNombreRestaurante as RESTAURANTE," + "'\\' + rtrim (RE.sServidorDatos) + '\\Cambios\\' as [RUTA DE ENVIO] , 'SIN PROCESAR' as RESULTADO " + " FROM amRestaurantes AS RE INNER JOIN" + " CambioRecetaRestaurante AS CR ON RE.sNumeroRestaurante = CR.sCodigoRestaurante" + " WHERE (CR.sConsecutivo = '" + lblNumeroDeCambio.Text + "')"; cmd = new SqlCommand (Sqlstring , db); dr = cmd.ExecuteReader () ; gvRestaurantes.DataSource = dr; gvRestaurantes.BestFitColumns(); }

treeMenu.AllowRemove = true;treeMenu.NodeRemoved += new RadTreeView.RadTreeViewEventHandler(treeMenu_NodeRemoved);RadTreeNode rootNode = new RadTreeNode("Menu",true);RadTreeNode homeMenu = new RadTreeNode("Home",true);RadTreeNode servicesMenu = new RadTreeNode("Our Services",true);servicesMenu.Nodes.Add(new RadTreeNode("Compliance Services",true));servicesMenu.Nodes.Add(new RadTreeNode("Support Services",true));servicesMenu.Nodes.Add(new RadTreeNode("Consultancy & Systems Advice",true));servicesMenu.Nodes.Add(new RadTreeNode("Business Startup",true));rootNode.Nodes.Add(homeMenu);rootNode.Nodes.Add(servicesMenu);treeMenu.Nodes.Add(rootNode);private void treeMenu_SelectedNodeChanged(object sender, RadTreeViewEventArgs e){ treeMenu.Nodes.Remove(e.Node);}