Skip to main content
Filter by
Sorted by
Tagged with
-4 votes
0 answers
114 views

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 ...
abdelillah's user avatar
0 votes
2 answers
169 views

I want my screen to have a small notepad in the bottom left. My textsize within this textbox seems to impact my grid, but I don't want it to. My understanding is that using uniform ="a" ...
Mike Nijland's user avatar
1 vote
0 answers
43 views

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 ...
Nancy K's user avatar
  • 51
1 vote
0 answers
81 views

My first attempt at asking this didn't go well. So, I am trying again, with hopefully more/better details. I am running into this exact same problem: RequiredFieldValidator have to click twice ...
Nancy K's user avatar
  • 51
-1 votes
1 answer
82 views

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 ...
Nancy K's user avatar
  • 51
1 vote
1 answer
115 views

I have here a sample form below with dynamic search code from this reference. OR Code: Private Sub txtSearch_Change() Dim i As Integer Dim j As Integer With listData .MultiSelect = ...
Shiela's user avatar
  • 785
3 votes
3 answers
90 views

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 ....
jqx204s's user avatar
  • 55
0 votes
1 answer
188 views

Part of the control having TextBox as the base class public override string Text { get => _labelText; set // <===== { _labelText = value!; Invalidate(); } } I ...
0___________'s user avatar
  • 71.6k
0 votes
1 answer
78 views

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 ...
Fox Orange's user avatar
0 votes
0 answers
94 views

I try to limit the input and displayed characters of an AvaloniaUi Textbox to just allow hexadezimal characters. So 0-F. So far I was not able to accomplish by using the various events and handle them ...
Similitran's user avatar
0 votes
1 answer
152 views

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 ...
Paul Hinterbauer's user avatar
0 votes
0 answers
31 views

I am trying to create a self-populating slideshow that pulls from a google spreadsheet - and I've got that part down, but somehow I can't get the text boxes with the data to fit inside the slide. I ...
Michele Hays's user avatar
0 votes
0 answers
47 views

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 ...
Pykara_Developer's user avatar
0 votes
2 answers
76 views

I am making the magazine for ratings. I need to navigate between textboxes using the arrows on the keyboard. My interface will look like a table, but I can't use TableLayotPanel and the like because ...
mifus arakiev's user avatar
1 vote
0 answers
74 views

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 ...
Stephen ePrivate's user avatar
0 votes
1 answer
70 views

I have an Access form with sub-report on it for preview. This way I have the print, save and email buttons "docked" to the bottom of the form window while scolling the report. Form_Load ...
bbProg's user avatar
  • 7
0 votes
1 answer
100 views

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 ...
user avatar
1 vote
0 answers
37 views

I am trying to create e dropdown textfield which can accept a custom input and add it to its dropdown history. For that dropdown_textfield package comes in use. I manage to create the actual textfield ...
Geo's user avatar
  • 306
0 votes
2 answers
88 views

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 ...
Ashok Kimmel's user avatar
0 votes
4 answers
93 views

I'm still new in wpf so please bear with me. I have a GroupBox that handle my logging. inside of it is ScrollViewer for scrolling and a TextBox to contain the logging. what i want is that at certain ...
fahrizkhan's user avatar
1 vote
5 answers
97 views

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. ...
ras bry's user avatar
  • 19
0 votes
1 answer
82 views

I have a textbox in Form2 named txtEID with an Employee ID value that is passed from another form. I also have a sample textbox named txtFullName that should autopopulate the name of a person from ...
Shiela's user avatar
  • 785
0 votes
2 answers
151 views

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 ...
Yodelayheewho's user avatar
1 vote
1 answer
122 views

I'm Trying to handle extra space in result in textbox in vb.net Is there something wrong with my code? or there is another solution? Please Guide me Thanks Below is the code I used : Public Class ...
dlaksmi's user avatar
  • 213
0 votes
1 answer
103 views

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 ...
dlaksmi's user avatar
  • 213
1 vote
1 answer
114 views

I want to make an ASP.NET web form that sends the text from a TextBox to a SQL database in Visual Studio. I found 2 tutorials for exactly what I wanted, but both of them have the same errors halfway ...
thedisplayedName's user avatar
0 votes
1 answer
50 views

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 ...
waiil's user avatar
  • 1
1 vote
1 answer
25 views

I have a UserForm1 with options why the discount is applied. One option is "Other". I would like to "jump" into the Textbox associated with the Option button OptionO and vice versa:...
Chris Peh's user avatar
4 votes
1 answer
72 views

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 ...
David Moore's user avatar
  • 1,026
0 votes
0 answers
43 views

I would like to set the placeholder in the textbox input field, but I am not succeeding. Can you help me? use druid::widget::{TextBox, Flex}; use druid::{AppLauncher, Data, Lens, Widget, WidgetExt}; #...
Paul's user avatar
  • 4,618
0 votes
1 answer
84 views

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 ...
Pelumi Towuru's user avatar
0 votes
0 answers
23 views

I created a userform with multiple fields (all of them are text boxes). In the first field I indicate the research criteria. Upon clicking the "Search" button, the macro looks in column A of ...
kstdrew's user avatar
  • 25
-1 votes
2 answers
79 views

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 ...
AHMED KHALED's user avatar
-1 votes
1 answer
67 views

I need a control in ASP.NET webforms. When the user writes a text in this control and clicks enter, the relevant text should be selected and appear in the control. In this context, I tried Listbox, ...
Bumda's user avatar
  • 21
3 votes
2 answers
168 views

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 ...
user27379482's user avatar
0 votes
1 answer
147 views

I'm reading in values from an Excel sheet and have the user checking those numbers/text and hitting save again if they are correct. It works well for any text and numbers, except for my discount being ...
Chris Peh's user avatar
-3 votes
2 answers
107 views

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 ...
Brandon Blank's user avatar
0 votes
2 answers
72 views

Is there a way to "bypass" the dot and "override" the decimals when typing a value in a TextBox in WPF formatted with a 2 decimals via StringFormat='{}{0:F2} ? When I type "1....
user avatar
0 votes
1 answer
276 views

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 ...
SoftwareDveloper's user avatar
0 votes
1 answer
39 views

I am trying to create a custom TextBox Template in WPF. My TextBox has a 1px border around it, this border has a margin of 8px, this is all simple stuff, no issues here. The issue I have is that when ...
Richard Gale's user avatar
  • 1,952
0 votes
2 answers
93 views

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 ...
ahmed ayman eljebari's user avatar
0 votes
0 answers
141 views

Im Trying to adjust width based on length text,change back color and add icon image in dropdown textbox autocomplete in datagridview for this adjust width based on length text >> Probably a ...
dlaksmi's user avatar
  • 213
0 votes
0 answers
71 views

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 ...
designspeaks's user avatar
0 votes
1 answer
96 views

I am trying to enable or disable multiple text boxes on selection box change. Meaning when I select any option in a selection box, all fields should be enabled. Tried the JavaScript and Html below ...
Gary Robinson's user avatar
-1 votes
1 answer
418 views

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))...
plsHelpMe's user avatar
0 votes
1 answer
61 views

In JavaFx eclipse application, before saving the data in SQL data base, it is required to verify following conditions: Either Numeric Value or Mixed. But,reject if purely non-numeric with(out) ...
mexco's user avatar
  • 5
0 votes
1 answer
84 views

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 ...
wasp256's user avatar
  • 6,352
0 votes
1 answer
181 views

I'm Trying to Force user only select suggested entry from datagridview Autocomplete textbox in VB.Net and one more I want the "Unit" column to appear according to the database when the "...
dlaksmi's user avatar
  • 213
0 votes
1 answer
127 views

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 ...
JetskiS's user avatar
  • 143
0 votes
1 answer
118 views

I am using Dot Net 8.0 and I have created a WPF application. On a window I wish to have a textbox control that is bound to a Float so the user can see and modify it. I have tried many things but ...
Dogulas's user avatar
  • 55

1
2 3 4 5
255