Posts by adelmo00 • 1,904 points
56 posts
-
1
votes1
answer1030
viewsA: Autocomplete Jcombobox
Two other developers here managed to solve the problem. They fixed the custom code that made the searches. class Principal { private static void createAndShowGUI() { // the combo box (add/modify…
-
0
votes1
answer1030
viewsQ: Autocomplete Jcombobox
I have a JComboBox that the autocomplete is only searching for the beginning of the word and need that when the user type search for any occurrence within the word, which is the way that the…
-
1
votes1
answer818
viewsQ: Pass updated information from subreport to parent report
I am making a report that contains all service providers, and has the following hierarchy: City -> Specialty -> Provider. In the ireport stood the main report containing a city subreport,…
-
9
votes1
answer5564
viewsQ: How to change PDF source generated by iReport?
I created a report using iReport and changed the source of the text to a custom font here in the company. The report is viewed using the iReport viewer itself and works smoothly with the source I…
-
5
votes3
answers12951
viewsA: Java += operator
When you add different primitive types, where one is larger than the other (sum of long with int, or double with int) you need to cast. The build error is the JVM informing you that the result of…
-
5
votes1
answer736
viewsQ: Jcombobox does not allow item change
I have a JComboBox which allows selecting only the first item clicked, in case I want to change selection it does not allow. In the jPanel There are two other combos that are identical with the one…