Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
private void PrintWordCell( int num) {
jPanelWord.removeAll();
jPanelWord.doLayout();
MaskFormatter formatter=null;
try{
formatter = new MaskFormatter("?");
WordToFind=new javax.swing.JFormattedTextField[num];
for ( int i=0; i<num;i++) {
WordToFind[i]=new javax.swing.JFormattedTextField(formatter);
WordToFind[i].setPreferredSize(new java.awt.Dimension(20,20));
jPanelWord.add(WordToFind[i]);
}
}
catch (java.text.ParseException x){
x.printStackTrace();
}
jPanelWord.validate();
}