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
Last Articles
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 3 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 4 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
- ubah 'not null' di mysqlfront gak bisa
by viq_01 in MySQL more 17 years ago - koneksi data module
by neoruz in Hal umum tentang Pascal Indonesia more 17 years ago - Harga Software
by iconfuseme in Enginering more 17 years ago - Tips : Delphi + Swish
by tox2wow in Multimedia & Graphic Enhancement more 19 years ago - Hook / Control External Application Window..??
by deLogic in Tip n Trik Pemrograman more 18 years ago - OpenSource CodeFest
by portege in OpenSource dan Gratis more 17 years ago - [req]konnfigurasi web server & database server
by Iansx in OOT more 17 years ago - Active MDI Form Error?
by kayla in Tutorial & Community Project more 15 years ago - BDE
by Budiadi in Hal umum tentang Pascal Indonesia more 18 years ago - program multi user
by gito in Lain-lain more 17 years ago