Answers for "show bloc maiusc vba"

VBA
0

show bloc maiusc vba

using System;
using System.Windows.Forms;

public class CapsLockIndicator
{
    public static void Main()
    {
        if (Control.IsKeyLocked(Keys.CapsLock)) {
            MessageBox.Show("The Caps Lock key is ON.");
        }
        else {
            MessageBox.Show("The Caps Lock key is OFF.");
        }
    }
}
Posted by: Guest on February-16-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language