life savor been looking for this .... thanks GOD bless you more
@LaingRaven3 жыл бұрын
Thanks you
@its-meadmosiommeant94904 жыл бұрын
you're a genius please keep lightning us ;)
@TechProgrammingIdeas4 жыл бұрын
Thanks
@LaingRaven3 жыл бұрын
Welcome
@EL.THIKA_Programmation4 жыл бұрын
Style of suggestion items
@swirlandtwirl54174 жыл бұрын
Hello can I assign inside the jlist like words I want to set?
@LaingRaven3 жыл бұрын
Let me check for you
@oussamahamouda92513 жыл бұрын
Thank you so much, but how can i get the suggestion from database sql
@LaingRaven3 жыл бұрын
you need to connect to database and query data I will make video show how to do it.
@oussamahamouda92513 жыл бұрын
@@LaingRaven thank you so much
@inori40033 жыл бұрын
How can i selected list just only pres down/up at keyboard? If google search, after showing suggestion, I am press down/up keyboard, list suggest selected.
@LaingRaven3 жыл бұрын
This new project search suggestion In part 3 video will show you how to use arrow key up and down link : kzbin.info/aero/PLyt2v1LVXYS30jiRqsUSoG7V0fbS9v8xP
@inori40033 жыл бұрын
@@LaingRaven wow. Thanks u very much. I need this.
@ThomasShelby-s1q Жыл бұрын
How to get suggestions from database loke that..
@johnandreiavila292 ай бұрын
i think change url
@elmerepogon94062 жыл бұрын
how about the same situation but the suggestion from jtable data like example searching the name of a person
@LaingRaven2 жыл бұрын
Check this kzbin.info/www/bejne/f3irmYeAh6aHrq8 Has 3 path work with mysql database
@adnanalam83894 жыл бұрын
how can i select something from the list and convert it to string?
@LaingRaven3 жыл бұрын
Let me check for you
@LaingRaven3 жыл бұрын
first you need to add event mouse click to list and code: if(!list.isSelectionEmpty()){ mod.getElementAt(list.getSelectedIndex()); }
@watertube5865 жыл бұрын
can u share the code plz
@pandapoggers13854 жыл бұрын
f = new JTextField(10); f.setBounds(100, 100, 100, 20); AutoSuggestor autoSuggestor = new AutoSuggestor(f, jfrm, null, Color.WHITE.brighter(), Color.BLUE, Color.RED, 0.75f) { @Override boolean wordTyped(String typedWord) { // create list for dictionary this in your case might be done via calling a // method which queries db and returns results as arraylist ArrayList words = new ArrayList(); words.add("hello"); words.add("heritage"); words.add("happiness"); words.add("goodbye"); words.add("cruel"); words.add("car"); words.add("war"); words.add("will"); words.add("world"); words.add("wall"); setDictionary(words); // addToDictionary("bye");//adds a single word return super.wordTyped(typedWord);// now call super to check for any matches against newest dictionary } }; jpnl.add(f);
@johnandreiavila292 ай бұрын
bro i have a error on the while ((inputLine=in.readLine())!=null){ JsonArray a; a = (JsonArray)parser.(inputLine);