The program below show you how to turn on the Scroll Lock button programmatically. Setting the locking state to Boolean.TRUE
activate the Scroll Lock.
package org.kodejava.awt;
import java.awt.*;
import java.awt.event.KeyEvent;
public class TurnScrollLockOn {
public static void main(String[] args) {
// Gets the default toolkit.
Toolkit toolkit = Toolkit.getDefaultToolkit();
// Update the locking state for scroll lock button to true
// will turn the scroll lock on.
toolkit.setLockingKeyState(KeyEvent.VK_SCROLL_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