ingin membuat aplikasi sehingga user tidak bisa menekan Alt+F4 ?
skrin ini bisa membantu anda, bahkan bisa diterapkan juga agar melarang penekanga tombol Alt+Tab
skrin ini bisa membantu anda, bahkan bisa diterapkan juga agar melarang penekanga tombol Alt+Tab
public
procedure AppMessage(var Msg: TMSG; var HAndled: Boolean);
end;
{...}
implementation
{...}
procedure TfDelphiID.FormCreate(Sender: TObject);
begin
// set your applications message handler to your new one
Application.OnMessage := AppMessage;
end;
procedure TfDelphiID.AppMessage( var Msg: TMSG; var Handled: Boolean);
begin
// let your application handle all messages initially
Handled := False;
case Msg.Message of
WM_SYSKEYDOWN:
if Msg.wParam = VK_F4 then
Handled := True; // don't allow ALT-F4
end;
end;
|
selamat mencoba.
saduran dari:
http://www.swissdelphicenter.ch/torry/showcode.php?id=43
Random Articles
- Membuat kontrol db aware
- Lazarus Release 3.0
- TINGGALKAN TURBO PASCAL!
- contoh sederhana source code Program untuk client server
- Walkthrough Android Project
- Disable Internet Explorer
- Firebird - SourceForge December Project of the Month
- Delphi Community Edition - Free
- MSEide+MSEgui! Pilhan Baru Programmer Pascal Multi Platform
- Safely Remove USB Mass Storage Device (Unplug/Eject USB)
Last Articles
Recent Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 5 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 5 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 13 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 13 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 13 years ago