I am working with Netbeans GUI and I would like to add 3 pixels of space at the beginning of my jTextField :
I have tryied with setMargin, setInset in the GUI but it doesn't change anything.
I have another question, why the bottom right border is not rounded ? here is my code :
Border roundedBorder = new LineBorder(new Color(210,210,210), 1, true);
researchTextField.setBorder(roundedBorder);
thank you very much,
Regards