Most voted "label" questions
The tag <label> is used to associate a label to its respective form field.</label>
Learn more…62 questions
Sort by count of
-
0
votes1
answer31
views -
0
votes1
answer54
viewsCreate a label when reading data from a file
I am trying to create a button that, using the information deposited in 3 files (labelName, Labelx, Labely), create a number of cells according to the number of entries. That is, if I have 1 entry…
-
0
votes1
answer100
viewsDelete programmatically created Labels
I’m developing a mapping application that uses Abels to name the different rooms in a building. The code I use to create the Abels is as follows: private void button2_Click(object sender, EventArgs…
-
0
votes1
answer64
viewsAssociate Label in If
I have 3 DropDownList, take their values, multiple and display result. However, I do not want to display this information in numerical format, but rather a label, as well as mineDropDownList. They…
-
0
votes1
answer307
viewsClick on the label text, make it appear in the input and edit this label
I’m new to Javascript and I have a dilemma. I can add the content of an input text to a label, but I need to make the content of the label appear in the input type text mentioned, click the edit…
-
0
votes1
answer34
viewsUse of pseudo-elements ::after in a DIV simulating an INPUT with LABEL - Pseudo-element overwrites the cursor. How to do not overwrite the cursor?
I created an editable DIV by simulating an INPUT with a LABEL using the pseudo-element ::after and the pseudo-class :Empty. LABEL (which is actually a pseudo-element ::after with the content equal…
-
0
votes0
answers32
viewsHow to remove the margin added to the label in Textfield that has prefixIcon when receiving Focus?
Current Goal: Container( padding: EdgeInsets.all(10), child: TextFormField( keyboardType: TextInputType.number, textInputAction: TextInputAction.continueAction, style: TextStyle(fontSize: 20),…
-
0
votes1
answer378
views(Tkinter) How to leave Labels, Buttons, and Frames with the tranparente background?
I’m trying to make a program in Python with Tkinter to make records and so on, but when trying to put a photo in the background image it is impossible to remove the white spaces that Tkinter does…
-
0
votes0
answers43
viewsCreate fields dynamically
I’m learning Python created a screen and inserted some fields, but when I try to create a routine to automate, make more generic I can’t. follow the code, if you can help me, thank you. from Tkinter…
-
-1
votes1
answer63
viewsError changing label - Javafx
I’m trying to change a label lbl1 by the FXML controller builder method. public class TestController extends Application { @FXML private Label lbl1; public TestController() { lbl1.setText("Teste");…
-
-1
votes1
answer441
viewsJAVAFX How to change the label after FXML is built?
I have a label on Scene B. I want to change this label when the user clicks on the "Login" button on the first screen. I tried to do this in my project with the usuario.setText() (user is the label…
-
-2
votes0
answers25
viewsput Array of Label objects into Sort numbers?
I’m creating a Label array where the Label Input label creates 12 numeors from 1 to 25, random numbers in ascending order, an Input text where it receives 3 numbers that are added by the user, with…