Arsip: Detect Caps lock On ?

more 17 years ago
debby
Gimana caranya di Tedit1 setfocus kedetect Caps Lock on (jika Caps lock hidup), sehingga muncul Baloon tip isinya Caps lock On ? ... kayak mau Login password di WinXp .

more 17 years ago
xerion
pada event OnEnter, lalu lihat ini _http://www.greatis.com/delphicb/tips/lib/manipulators-capslockon.html
trus untuk muncul balon tips ???? ---> google .....

more 17 years ago
MrLee
Deb Site nya di ubah dahulu!
http://www.greatis.com/delphicb/tips/lib/manipulators-capslockon.html
Turn on\off the Caps Lock
For turning the Caps Lock key see this procedure (use VN_NUMLOCK instead of VK_CAPITAL for Num Lock).
procedure TForm1.Button1Click(Sender: TObject);
var
KeyState: TKeyboardState;
begin
GetKeyboardState(KeyState);
if (KeyState[VK_CAPITAL]=0) then
begin
// Simulate a "CAPS LOCK" key release
Keybd_Event(VK_CAPITAL, 1, KEYEVENTF_EXTENDEDKEY or 0, 0);
// Simulate a "CAPS LOCK" key press
Keybd_Event(VK_CAPITAL, 1, KEYEVENTF_EXTENDEDKEY or KEYEVENTF_KEYUP, 0);
end
else
begin
Keybd_Event(VK_CAPITAL, 0, KEYEVENTF_EXTENDEDKEY or 0, 0);
Keybd_Event(VK_CAPITAL, 0, KEYEVENTF_EXTENDEDKEY or KEYEVENTF_KEYUP, 0);
end;
end;
more ...
- Pages:
- 1
reply |
Report Obsolete
AI Forward

🚀 We're thrilled to partner with Alibaba Cloud for "AI Forward - Alibaba Cloud Global Developer Summit 2025" in Jakarta! Join us and explore the future of AI. Register now:
https://int.alibabacloud.com/m/1000400772/
#AlibabaCloud #DeveloperSummit #Jakarta #AIFORWARD
Last Articles
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 4 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 5 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 12 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 12 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 12 years ago
Random Topic
- License Delphi
by -BeT- in Komersial more 16 years ago - AUTO REFRESH................
by rykemit in MySQL more 18 years ago - [ASK] Penekanan Tombol Keyboad
by RoenZ in Tip n Trik Pemrograman more 17 years ago - [Ref] Mau download buku gratis ?
by dr4cul453xy in Hal umum tentang Pascal Indonesia more 18 years ago - Jakarta Banjir .... Banjir Jakarta
by kaka-delphi in OOT more 18 years ago - Mengatur Print nota dan continous form dengan LX300/800
by fakhrudin in Hal umum tentang Pascal Indonesia more 16 years ago - memproteksi port usb
by flamade in Network, Files, I/O & System more 17 years ago - Free Windows Installer (MSI) Authoring Tools
by doniking in Hal umum tentang Pascal Indonesia more 18 years ago - Maaf ya...
by yuan_carlos in OOT more 17 years ago - Memisahkan file *.exe dengan database MS.Access
by diko_male in Network, Files, I/O & System more 15 years ago