Am I being stupid? How do you Can you add a RadTextBox to a RadStatusStrip?
1 Answer, 1 is accepted
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 24 Oct 2022, 05:02 AM
Hi, Lee,
It is possible to add a RadTextBoxElement inside a RadStatusStrip:
Dim tb AsNew RadTextBoxElement
tb.MinSize = New Size(200, 20)
Me.RadStatusStrip1.Items.Add(tb)
I hope this information helps. If you need any further assistance please don't hesitate to contact me.
Regards,
Dess | Tech Support Engineer, Principal
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
Thanks, I know these are all beginers questions but how do I change the text at runtime ?
Dess | Tech Support Engineer, Principal
Telerik team
commented on 24 Oct 2022, 11:16 AM
Lee, it is possible to have a global variable for the RadTextBoxElement and simply set its Text property at run time. Alternatively, you can access the textbox via the RadStatusStrip.Items collection - either iterate the collection and find the search element or remember its index in the collection.