The example below show you how to activate the Num Lock button programmatically. Setting the locking state to Boolean.TRUE
will turn the Num Lock on.
package org.kodejava.awt;
import java.awt.Toolkit;
import java.awt.event.KeyEvent;
public class TurnNumLockOn {
public static void main(String[] args) {
// Gets the default toolkit.
Toolkit toolkit = Toolkit.getDefaultToolkit();
// Update the locking state for num lock button to true
// will turn the num lock on.
toolkit.setLockingKeyState(KeyEvent.VK_NUM_LOCK, Boolean.TRUE);
}
}
Latest posts by Wayan (see all)
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023