This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
I noticed that I can resize the columns in a JTable - but I also noticed that the JScrollPane doesn't add a horizontal scroll when the column is sized (dragged) outside the viewport. How would I get it to slap on the horizontal scroll? Thanks. I love you man!
You can set the property jScrollPane1.setHorizontalScrollBarPolicy(javax.swing.JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS); or javax.swing.JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED or javax.swing.JScrollPane.HORIZONTAL_SCROLLBAR_NEVER this should work I think .... good luck! - DooL