H henry3 Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-03 #1 [?]如何让jtable不得到焦点? jTable1.setRequestFocusEnabled(false); 没用
Y YoYoYo Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-05 #2 setRequestFocusEnabled() is typically honored for mouse operations, but not keyboard operations. Use jTable1.setFocusable(false); instead.
setRequestFocusEnabled() is typically honored for mouse operations, but not keyboard operations. Use jTable1.setFocusable(false); instead.
Y YoYoYo Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-05 #4 In JDK 1.4. If youdo n't want to upgrade to 1.4, you may use setEnabled(false). All the table is disabled then .
In JDK 1.4. If youdo n't want to upgrade to 1.4, you may use setEnabled(false). All the table is disabled then .
H henry3 Unregistered / Unconfirmed GUEST, unregistred user! 2002-04-05 #5 哪去down jdk1.4? 我在sun.com上都没发现?