Can you add a RadTextBox to a RadStatusStrip?

1 Answer 73 Views
StatusStrip TextBox
Lee
Top achievements
Rank 1
Lee asked on 23 Oct 2022, 01:26 PM
Am I being stupid? How do you Can you add a RadTextBox to a RadStatusStrip?

1 Answer, 1 is accepted

Sort by
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 As New 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/.

Lee
Top achievements
Rank 1
commented on 24 Oct 2022, 08:26 AM

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.
Tags
StatusStrip TextBox
Asked by
Lee
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or