12,711 questions
-4
votes
0
answers
106
views
Binding textbox to an image in WPF
I'm creating an app for a clinic, they want to add the option of filling a prescription inside the app and printing it from there. I tried to just put some textboxes for the info, and put those over ...
1
vote
0
answers
38
views
Conflict between RequiredFieldValidator and Client Side CustomValidator
3rd time's a charm. Let me apologize for not knowing proper StackOverflow etiquette in my previous two question attempts.
I am trying to validate a page. By design, it is allowable for the user to ...
-1
votes
1
answer
76
views
Problem with textbox validation and next control focus
I am validating a textbox (specifically, a Telerik RadTextBox, but I don't think that is the problem). I've tried both RequiredFieldValidator and CustomValidator. When I press Tab, validation works ...
3
votes
3
answers
89
views
Get color code to Excel Textbox from cell reference in VBA
I have the following VBA code in Excel which works fine
Sub Change_Color()
Color_TextBox4 = RGB(255, 255, 0)
Sheet03.Shapes("TextBox4").Select
With Selection.ShapeRange.Fill
....
0
votes
1
answer
67
views
WPF TextBlock for Phone Number
I need to make a beautifull form to input a phone number (I'm not sure if all the points are feasible):
Text in the textbox: +1 --- --- ----.
When the user enters digits (ncluding by pasting), they ...
0
votes
1
answer
144
views
How to add a separator for CTK Text Box?
I would like to add a separator line in between the entries of my text box but have not yet found a neat way of doing this.
I would also gladly appreciate any further comments on my code any ways to ...
0
votes
0
answers
45
views
Textbox highlighted issue in create.js
When I click the first audio button, the first textbox of the word should be
highlighted. However, when I click the audio button again, the first
textbox of that word is not highlighted, instead, the ...
1
vote
0
answers
74
views
Trying to trap a button click before focuslost event
I have a form with some questions on it and MaskedTextBoxes for user input. I have that validation for possible entries.
With the question/text boxes, the user can put something into the textbox, but ...
0
votes
1
answer
93
views
Populating a list of lists of TextBox
I have a grid of 81 modified TextBox items arranged in a 9x9 grid.
I added properties for row, column, block, and valid int entries for each box.
I was able to populate the row, column, and block ...
0
votes
2
answers
81
views
Is there a way to make a text box look different from my input fields
I made a simple website that takes in two arugments and gives the output of the third. To style the inputs, I used input styling on text inputs. However, my result is also in a text field and looks ...
1
vote
5
answers
95
views
How To Temporarily Disable lname Textbox When fname Is Empty? [closed]
I want to temporarily disable lname textbox when the fname textbox is empty, but if the fname is not empty the lname should be enabled.
I have a code but I don't think it is correct nor wrong.
...
0
votes
2
answers
142
views
VBA userform with interactive, editable pop-up to view and edit textbox
I have userform1 with a textbox1 and space on the form is limited. I am trying to create an interactive/editable 'pop-up' to give the user a larger space to enter/edit text in textbox1.
I created a ...
0
votes
1
answer
98
views
Formatting string into currency in textbox in form load and event and support Value In Words with VB.NET
I'm Trying to Formatting string into currency in textbox in form load and event and support Value In Words with VB.NET.
for textbox txtdownpayment is not readonly . So please guide me so that I can ...
0
votes
1
answer
49
views
VBA and Combobox values
I have a form with a combo box, and I would like the corresponding values related to the selected ID from the combo box to display in text boxes. The issue is that the text boxes only display the ...
4
votes
1
answer
72
views
Centering Text With Superscripts on Multiple Lines in a Plot in R
I have a plot, and I'd like to add a text box to it. This text box has text that must go on 5 different lines. This text box also contains superscripts. The text box should be center justified too. I ...
0
votes
1
answer
76
views
Scanner for Textbox causes PostBack
I have a textbox which gets information from a scanner or scanned barcode item. However, when I scan the barcode, it causes an AutoPostBack which erases all the information that has been entered. I ...
-1
votes
2
answers
72
views
C++ GUI DateTimePicker date value to TextBox
I have a TextBox and a DateTimePicker and I want the selected date in the DateTimePicker to be written in the TextBox.
In short what do I need to write inside here?
private: System::Void ...
3
votes
2
answers
159
views
Text inside a pygame_gui textbox disappears after changing it - pygame_gui library
I am using the pygame_gui library. I am trying to make a textbox that when pressed enter it will print the text inside the box to the console and reset it (so the textbox will be empty).
It does ...
-3
votes
2
answers
106
views
Why are my Java text boxes only holding the last number of an imputed array? (I am using a JFrame Form for the GUI)
I have tried to get a textbox to display an array, but as far as I have tried it only shows the last number of the array
ex: array gives: 1, 24, 18, 98, 100, 78, 63, 24, 77, 46
Textbox displays: 46
...
0
votes
1
answer
273
views
DevExtreme: TextBox: Set Mask to a Model property
Is it possible to set the mask of a devextreme textbox field to a model's property? As in bind the mask property to a model's property value?
For example:
Model:
public MyClass{
public string ...
0
votes
2
answers
85
views
Can we add an image inside a textbox without the use of a stack in swiftui?
I am trying to add an image into my textinput in swiftui without the use of a zstack because this cause the whole view to bug, this is the expected result , is there a way to add them without the use ...
0
votes
0
answers
67
views
Form Header textbox value changes with record set when scrolling through continuous form? in Access
I'm trying to set up a Continuous form in Access that provides information for an employee task list (i.e. Supervisor name, Employee name, Due date, Status, etc.).
In the form header, the supervisor ...
-1
votes
1
answer
414
views
how to change the text color of a pygame gui textbox
I have this python code which displays a screen with a textbox in the middle that print its text when pressed enter:
import pygame_gui, pygame
pygame.init()
screen = pygame.display.set_mode((500,500))...
0
votes
1
answer
84
views
Add default text to curses Textbox object
I'm using the curses python library in an application and have implemented a Textbox as well https://docs.python.org/3/library/curses.html#textbox-objects.
Is there a way to add a default text when ...
0
votes
1
answer
124
views
Group Textboxes to create an array in VBA
I want to automatically save solidworks files within an assembly. The names of each parts that will be saved is created based on the input given in a userform.
The user can determine the amount and ...