Hi guys,
I am having some trouble trying to remove the border from the radRotator control in a WinForms project. The control is on a normal form, and I have gone through all of the properties. I have set the BorderThickness property to '0', yet it still displays.
Any help would be appreciated!
Regards,
Mike

Given the following routine, can you please explain why I am not able to change the row height via code?
With Me.dvAreas .AllowColumnReorder = False .AllowColumnResize = False .AllowRowReorder = False .AllowRowResize = False .EnableAlternatingRowColor = True .AutoSizeRows = False .TableElement.GroupHeaderHeight = 50 .TableElement.RowHeight = 50 .TableElement.TableHeaderHeight = 50 Dim colID As New GridViewTextBoxColumn() colID.Name = "colID" colID.HeaderText = "Work Area ID" colID.FieldName = "WorkAreaID" colID.MaxLength = 0 colID.TextAlignment = ContentAlignment.MiddleRight colID.IsVisible = False colID.Width = 0 Dim colWorkAreaName As New GridViewTextBoxColumn() colWorkAreaName.Name = "WorkAreaName" colWorkAreaName.HeaderText = "Name" colWorkAreaName.FieldName = "WorkAreaName" colWorkAreaName.MaxLength = 15 colWorkAreaName.TextAlignment = ContentAlignment.MiddleLeft colWorkAreaName.IsVisible = True colWorkAreaName.Width = 100 Dim colWallConstructionMasonry As New GridViewCheckBoxColumn() colWallConstructionMasonry.Name = "WCMasonry" colWallConstructionMasonry.HeaderText = "Masonry" colWallConstructionMasonry.FieldName = "WCMasonry" colWallConstructionMasonry.TextAlignment = ContentAlignment.MiddleLeft colWallConstructionMasonry.IsVisible = True colWallConstructionMasonry.Width = 100 Dim colWallConstructionSteel As New GridViewCheckBoxColumn() colWallConstructionSteel.Name = "WCSteel" colWallConstructionSteel.HeaderText = "Steel" colWallConstructionSteel.FieldName = "WCSteel" colWallConstructionSteel.TextAlignment = ContentAlignment.MiddleLeft colWallConstructionSteel.IsVisible = True colWallConstructionSteel.Width = 100 Dim colWallConstructionOther As New GridViewCheckBoxColumn() colWallConstructionOther.Name = "WCOther" colWallConstructionOther.HeaderText = "Other" colWallConstructionOther.FieldName = "WCOther" colWallConstructionOther.TextAlignment = ContentAlignment.MiddleLeft colWallConstructionOther.IsVisible = True colWallConstructionOther.Width = 100 .MasterTemplate.Columns.Add(colID) .MasterTemplate.Columns.Add(colWorkAreaName) .MasterTemplate.Columns.Add(colWallConstructionMasonry) .MasterTemplate.Columns.Add(colWallConstructionSteel) .MasterTemplate.Columns.Add(colWallConstructionOther) Dim view As New ColumnGroupsViewDefinition() view.ColumnGroups.Add(New GridViewColumnGroup("Work Area")) view.ColumnGroups.Add(New GridViewColumnGroup("Wall Construction")) view.ColumnGroups(0).Rows.Add(New GridViewColumnGroupRow()) view.ColumnGroups(0).Rows(0).ColumnNames.Add("WorkAreaName") view.ColumnGroups(1).Rows.Add(New GridViewColumnGroupRow()) view.ColumnGroups(1).Rows(0).ColumnNames.Add("WCMasonry") view.ColumnGroups(1).Rows(0).ColumnNames.Add("WCSteel") view.ColumnGroups(1).Rows(0).ColumnNames.Add("WCOther") .ViewDefinition = view
I'm using v2016.2.503.40 and VS2015

I have developed a WinForm form with a RadButton and have compiled Framework 4 and double-click the executable does not load anything in the machines of my clients. But in my development machine if charging.
I have to install on my clients to run normally Framework 4 Other than the another component have to install to make it work?
help me please
Thank you

Trying to apply RadChartView localization. When overriding string "PaletteArctic" (lines 8,9) - the corresponding context menu item in control will not change the color of the chart.
Please reply if it is a bug or im doing it wrong way...
01.public ref class MyRadChartLocalizationProvider : Telerik::WinControls::UI::RadChartLocalizationProvider02.{03.public:04. virtual String^ GetLocalizedString(String ^id) override05. {06. if( id == "Palette" )07. return "Palette";08. else if( id == "PaletteArctic" )09. return "123";10.11. return Telerik::WinControls::UI::RadChartLocalizationProvider::GetLocalizedString(id);12. }13.};
Telerik::WinControls::UI::RadChartLocalizationProvider::CurrentProvider = gcnew MyRadChartLocalizationProvider;c++/cli, visual studio 2010, RadControls_WinForms_2012_3_1017_dev

Hello everyone
I'm facing a problem with RadMaskedEditBox control in UI for WinForms. I'm not able to paste a copied text into the control. Even if I set MaskType to None, I'm not able to paste some text. The first time I can paste some text, but then nothing more. Example:
I first copy a text like e.g. "hello" and paste it to the RadMaskedEditBox. This works. If I want to paste it then again, it doesn't work anymore. Step by step:
1. Copy a random text using CTRL+C
2. Paste it to the RadMaskedEditBox control using CTRL+V (works)
3. Try to paste it again using CTRL+V (doesn't work anymore).
I noticed that pasting a text always works if the user selects the whole text which is already in the box (like "overwrite" the existing text). But it's not possible to paste a text to the end of an existing text in the EditBox control.
Is this a known bug of this control? If yes, is there a planned bugfix?
Regards,
Danilo




