

Hi, I have a mainform containing a radDock. Whenever I launch a new form they appear in the tabstrip. Is there any way to modify the tabstrips of some forms at runtime to show a number ?
I would like it to look like notifications in chrome tabs.
Thank you for the help !

I have a created a WinForms User Control class (C# WinForms project in and Visual Studio 2017) that has (3) controls in it: A label, textbox, and button. Next drag-and-drop that User Control onto a WinForm, and it appears with each of the child controls. All appears good, for now..
Next I decide to make some changes in the User Control custom class, so I open it in the visual designer, move the button to a new location and change the size and change the caption of the button and save my changes. Rebuild. Next I open the Form that uses an instance of the User Control, and I do *NOT* see the updates I made to the User Control class.... The button is at the original location and original caption and original size.
Surely, the creates of this platform should now that anyone would expect these changes to be applied to the instance of the control wherever it is used in the app.
Please tell me I am missing something very basic here to make this work like true inheritance should...

Hello!, I implement a spell check control using a custom (spanish) dictionary without problem using Telerik UI for WinForms R3 2017.
But now, I need to implement the same functionality using Telerik UI for WinForms Q1 2015 (SpellChecker.dll version 2015.1.225.40) and I can't compile my code:
Thank you in advance!
'---------------------------------------------------------------------------------------- ' Diccionario espanol para uso con SpellChecker '----------------------------------------------------------------------------------------Public Shared ReadOnly CulturaEspanol As Globalization.CultureInfo = Globalization.CultureInfo.GetCultureInfo("es-ES") '---------------------------------------------------------------------------------------- ' Diccionario espanol para uso con SpellChecker '---------------------------------------------------------------------------------------- Public Class MySpanishDictionary Inherits Telerik.WinControls.SpellChecker.Proofing.WordDictionary Protected Overrides Sub EnsureDictionaryLoadedOverride() Dim ls_dicpath As String Try ls_dicpath = My.Application.Info.DirectoryPath & "\es-ES.tdf" If Not File.Exists(ls_dicpath) Then frmError.MostrarDialogo(System.Reflection.MethodBase.GetCurrentMethod, New Exception(ls_dicpath & " No Existe!.")) Exit Sub End If Using lb_ms As System.IO.MemoryStream = New System.IO.MemoryStream(File.ReadAllBytes(ls_dicpath)) Me.Load(lb_ms) End Using Catch ex As Exception frmError.MostrarDialogo(System.Reflection.MethodBase.GetCurrentMethod, ex) End Try End Sub End Class '---------------------------------------------------------------------------------------- ' Setea Diccionario espanol para uso con SpellChecker '---------------------------------------------------------------------------------------- Public Shared Sub setearDiccionario(ByRef ao_spcControl As Telerik.WinControls.UI.RadSpellChecker) Try Dim lo_textBoxControlSpellChecker As Telerik.WinControls.UI.TextBoxSpellChecker = ao_spcControl.GetControlSpellChecker(GetType(Telerik.WinControls.UI.RadTextBox)) lo_textBoxControlSpellChecker.ShowAllCapitalLettersWord = True Dim lo_documentSpellChecker As Telerik.WinControls.SpellChecker.Proofing.DocumentSpellChecker = TryCast(lo_textBoxControlSpellChecker.SpellChecker, Telerik.WinControls.SpellChecker.Proofing.DocumentSpellChecker) lo_documentSpellChecker.SpellCheckingCulture = CulturaEspanol lo_documentSpellChecker.AddDictionary(New MySpanishDictionary(), CulturaEspanol) Catch ex As Exception frmError.MostrarDialogo(System.Reflection.MethodBase.GetCurrentMethod, ex) End Try End Sub.... at form you can use it: '----------------------------------------------------------------------- ' Spell Check "as you type" en componente texto observaciones ' spcCheck is RadSpellChecker ' txtObservaciones is RadTextBox '----------------------------------------------------------------------- spcCheck.AutoSpellCheckControl = txtObervaciones FG.Controles.Comunes.setearDiccionario(spcCheck)How do I get rid of the Expand / Collapse on Each card? (See Capture1)
Also, it might be related, but I would like the photo to expand to fill to the top and side edges in the card, as in the Telerik UI for WinForms demo application. (See Capture2).
I copied this Demo code exactly, even editing the form1.Designer.vb, so they should look the same, but I still get variations between the two. In designer editing properties directly, it will not hold several properties, changing them to what the control thinks they should be. This is especially true for trying to set the size and location of the CardViewItems.
Please advise.
Thanks,


Hi
i have a radtreeview with checkbox that fill with this table
ChildID ChildName ParentID ParentName
1 a
2 b 1 a
3 c 2 b
trwFormName.DisplayMember = "ChildName";
trwFormName.ParentMember = "ParentID";
trwFormName.ChildMember = "ChildID";
i take all node that checked by this code:
foreach (var node in trwFormName.TreeViewElement.GetNodes())
{
if (node.Checked)
{
var t = node.Value;
}
}
but i cant get node id . value is name and not id
please help me

Let me tell you what I need first. I need the ability for the users to Un-Select an item in a DropDownList where the DropDownStyle = RadDropDownStyle.DropDownList. Programmatically, this is pretty easy, I can just do this in code SelectedIndex = -1. Now, that I know I can do this to un-select an item in the dropdownlist, next, I need to give the users the ability to also do this. My thought was to create a right click context menu that if there was a selected item, to give the user a prompt to clear the selection. I can't seem to get this to work. If there is a simpler way to do this, I would like an example. These dropdown lists are used for reporting, it would suck to have to tell the user to exit the form and reload it just to remove un-select an item in a dropdownlist.
Any help and/or ideas would be gratefully appreciated.
Thanks
