Pages

Showing posts with label table. Show all posts
Showing posts with label table. Show all posts

Sunday, April 10, 2011

How to arrange/ sort/ list words/ sentences alphabetically in MSWord 2007

1. Highlight the items whether in TABLE or in LIST.
2. Select Home from the menu tab then click SORT button
3. Select SORT options using your preference then click OK button.


- That should work - :D

Thursday, July 15, 2010

How to disable edit cell in JTable (especially in NetBeans)

Put this in your code:

table = new javax.swing.JTable(){
    public boolean isCellEditable(int rowIndex, int colIndex) {
        return false;   //Disallow the editing of any cell
    }
};

where table is the name of your JTable.

For NetBeans users:
1. select the table GUI, right click, select Customize Code
2. Your code should look like this: