keystroke "F1", "F2", "F3"
i wrote a java swing application with thread that use keystroke. i used the identical code for "F1", "F2" and "F3". however, "F1" and "F3" works, but "F2" does not. does anybody have any suggestion why this is happen?
thanks
[237 byte] By [
yaliu07a] at [2007-11-27 10:27:36]

# 1
F2 has a default keybinding to some components such as JTable hence if those component exist in your app, and they have focus when you press the key, the response might not be as expected.
Search online for "F2 keybinding" you might come up with more info
ICE