Tambahkan Kode berikut ini Diantara Button untuk Efek On top :
SetWindowPos(Contoh :
Handle,
HWND_TOPMOST,
0,
0,
0,
0,
SWP_NOACTIVATE or SWP_NOMOVE or SWP_NOSIZE);
procedure TForm1.Button2Click(Sender: TObject);Tambahkan Kode berikut ini Diantara Button Untuk No top :
begin
SetWindowPos(
Handle,
HWND_TOPMOST,
0,
0,
0,
0,
SWP_NOACTIVATE or SWP_NOMOVE or SWP_NOSIZE);
end;
SetWindowPos(Contoh :
Handle,
HWND_NOTOPMOST,
0,
0,
0,
0,
SWP_NOACTIVATE or SWP_NOMOVE or SWP_NOSIZE);
procedure TForm1.Button2Click(Sender: TObject);Untuk Contoh Source kode yang Sudah jadi anda bisa langsung Download di sini
begin
SetWindowPos(
Handle,
HWND_NOTOPMOST,
0,
0,
0,
0,
SWP_NOACTIVATE or SWP_NOMOVE or SWP_NOSIZE);
end;
Tidak ada komentar:
Posting Komentar