Posts

Showing posts from May, 2016

JavaFX 8 Tutorial 61 - Retrive Database Values Into CheckBox

Image
The code written in this tutorial is -                     // Retrive Hobbies Into CheckBox                                         if(rs.getString("Hobbies")!= null){                         checkBox1.setSelected(false);                         checkBox2.setSelected(false);                         checkBox3.setSelected(false);                                                 //hobbies in the string formate - [Playing , Dancing]                         System.out.println(r...