or
GridViewDecimalColumn col = new GridViewDecimalColumn();col.Name = node.Name;col.FielName = node.Name;col.HeaderText = friendlyName;foreach (XmlNode mapNode in mappingXmlDoc.SelectSingeNode("Mappings")){ // Maps to GridViewDateTimeColumn if (elementPrefix == "dt") { GridViewDateTimeColumn col = new GridViewDateTimeColumn(); col.Name = mapNode.Name; col.FieldName = mapNode.Name; col.HeaderText = friendlyName; radGridView1.Columns.Add(col); }}DataSet dsData = new DataSet();dsData.ReadXml(xmlFile);radGridView.DataSource = dsData.Tables[0];<assets> <asset> <tb_Desc></tb_Desc> <dt_MoveDate><dt_MoveDate> </asset></assets>foreach (GridViewDataColumn in radGridView1.Columns){ string[] strArr = col.FieldName.Split(new char[] {'_'}); // This way I know its a GridViewDateTimeColumn if (strArr[0] == "dt") { ((GridViewDateTimeColumn)col).ExcelExportType = DisplayFormatType.Custom; ((GridViewDateTimeColumn)col).ExcelExportFormatString = "dd.mm.YYYY"; ((GridViewDateTimeColumn)col).FormatString = "{0:dd.mm.YYYY}"; }}Private Sub dockingManager_DockTabChanged(
In this event e.Tab.Text just gives the changed tab text.
Is there any way we can change the text style of all the tabs that are open. Probably some where deep down the object structure. Again any help would be great.
End If

