Top "Textbox" questions

A textbox is a graphical user interface element which allows for simple input text, usually only a single line of text.

Convert TimeSpan from format "hh:mm:ss" to "hh:mm"

I want to show in a TextBox only hour and minutes var test = dataRow.Field<TimeSpan>("fstart").ToString(); //…

c# asp.net textbox timespan
how do I reference a text box value in an expression? SSRS

I have a list and inside this list I have a text box. Since it's a list, the text box …

reporting-services reference textbox
Why is text in TextBox highlighted (selected) when form is displayed?

I have a form containing a TextBox in C# which I set to a string as follows: textBox.Text = str; …

c# winforms textbox
Set the caret/cursor position to the end of the string value WPF textbox

I am try to set the caret/cursor position to the end of the string value in my WPF textbox …

wpf textbox cursor caret cursor-position
C# removing substring from end of string

I have an array of strings: string[] remove = { "a", "am", "p", "pm" }; And I have a textbox that a user …

c# string textbox
Angular ng-change in input textbox with old value

<input type="text" id="exampleab" ng-model="a.b" ui-event="{ blur : 'callScriptThenServer()' }" > For some reasons the ng-change on …

angularjs textbox angularjs-ng-change
How to set min and max character length in a textbox using javascript

If I have a text and I only want to allow the user enter text between 5 and 10 characters long, how …

string textbox character max min
WPF rounded corner textbox

I don't know WPF and am now learning it. I was looking for rounded corners TextBox in WPF. So I …

wpf textbox rounded-corners
Get user input from a textbox in a WPF application

I am trying to get user input from the textbox in a WPF application I am building. The user will …

c# wpf textbox user-input
VBA/Macro code to get the value of textbox

Sub CopyRandomRows() Windows("sample rnd.xlsm").Activate Rows("1:1").Select Selection.Copy Application.CutCopyMode = False Selection.Copy Windows("rnd sample draft.…

excel vba textbox getvalue