When trying to add a GridViewTextBoxColumn to my gridview control through the property builder my Visual Studio Devenv becomes completely unresponsive. When adding it through code the program completely locks up. No error just CPU usage to 50% steady and nothing else happens. Below is how the column is created and added on my other Dev box and was created by the property builder. I dont actually beleive it is a version problem because if I create a new form add the gridview to it and try to add a column my UI freezes so if it were a version issue then the entire version I have would be broke.
Note...
I have removed and re-installed the controls twice with the same effect both times. Version 8.1.0.0
......
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
gridViewTextBoxColumn13.FieldName = "ProjectName";
gridViewTextBoxColumn13.HeaderText = "Project Name";
gridViewTextBoxColumn13.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
gridViewTextBoxColumn13.IsVisible = false;
gridViewTextBoxColumn13.UniqueName = "ProjectName";
gridViewTextBoxColumn13.Width = 5;
this.radGridFileList.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn13);
.........
Note...
I have removed and re-installed the controls twice with the same effect both times. Version 8.1.0.0
......
Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
gridViewTextBoxColumn13.FieldName = "ProjectName";
gridViewTextBoxColumn13.HeaderText = "Project Name";
gridViewTextBoxColumn13.HeaderTextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
gridViewTextBoxColumn13.IsVisible = false;
gridViewTextBoxColumn13.UniqueName = "ProjectName";
gridViewTextBoxColumn13.Width = 5;
this.radGridFileList.MasterGridViewTemplate.Columns.Add(gridViewTextBoxColumn13);
.........