Select all (ctrl+a) in Jtable with applet

It seems that ctrl+a is somehow disabled when I try to select all rows in a jtable. I have not found where the problem is. Is there something I may be missing. However, I can select multiple rows using the mouse. This is for a applet.
[248 byte] By [browning_11a] at [2007-10-3 5:00:33]
# 1

In the future, Swing related questions should be posted in the Swing forum.

Once the table has focus it works fine for me. Here is my test program:

import java.awt.*;

import javax.swing.*;

public class AppletTest extends JApplet

{

public void init()

{

JTable table = new JTable(5, 5);

getContentPane().add(table);

}

}

camickra at 2007-7-14 23:06:05 > top of Java-index,Java Essentials,Java Programming...