Program ini
menjelaskan tentang mengubah background toolbar windos Explorer dengan gambar
bitmap. Yang dilakukan program ini sangat sederhana, yakni memberikan data
value BackBitmapShell pada key HKEY_CURRENT_USER\Software\Microsoft\Internet
Explorer\Toolbat dan nilainya merupakan path file bitmap yang digunakan. Pada Form rancang 2 Button dan poperty Dialog dengan mengambil OpenPictureDialog,
dan juga EditText.
Ini Listing program
selengkapnya :
Procedure Tform1.Button1Click(Sender:TObject);
begin
if OpenPictureDialog1.Execute then
if OpenPictureDialog1.Execute then
Edit1.Text:=OpenPicutreDialog1.FileName;
end;
ProcedureTfrom1.Button2Click(Sender:TObject);
ProcedureTfrom1.Button2Click(Sender:TObject);
var Register:Tregister;
begin
Register:=Tregister.create;
Register.RootKey:=HKEY_CURRENT_USER;
try
try
Register.OpenKey('\Software\Microsoft\Internet Explorer\'+
'Toolbar',True);
Register.WriteString('BackBitmapShell',Edit1.Text);
ShowMessage('Berhasil mengubah background toolbar'+#13+'Untuk melihat
Register.WriteString('BackBitmapShell',Edit1.Text);
ShowMessage('Berhasil mengubah background toolbar'+#13+'Untuk melihat
hasilnya,buka'+
' "Windows Explorer" baru.');
' "Windows Explorer" baru.');
Except on
ERegistryException do
ShowMessage('Gagal
mengubah background toolbar explorer');
end;
Finally
Register.CloseKey;
Register.Free;
end;
Finally
Register.CloseKey;
Register.Free;
end;