Cara ini tidak berlaku untuk Windows98, dan untuk memodifikasinya juga bukan merupakan hal yang mudah.
Tambahkan Registry di klausa USES
procedure TForm1.Button1Click(Sender: TObject);
var Reg: TRegistry;
begin
Reg := TRegistry.Create;
try
with Reg do
begin
RootKey := HKEY_LOCAL_MACHINE;
OpenKey
('Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\DriveIcons\', True);
{ True, because if a subkey named DriveIcons and/or DefaultIcon
does not exist, windows automatically creates it }
OpenKey('C\\DefaultIcon\', True); // as default first drive C
// we are choosing empty field as default value
WriteString('', 'C:\\YourIcons\\Sample1.ico');
{ and icon file path or if dll file then
e.g 'c:\\YourIcons\\Icons.dll, 2' }
CloseKey;
end;
finally
Reg.Free;
end;
// if 2nd hard drive is present..
Reg := TRegistry.Create;
try
with Reg do
begin
RootKey := HKEY_LOCAL_MACHINE;
OpenKey
('Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\DriveIcons\', True);
OpenKey('D\\DefaultIcon\', True);
WriteString('', 'C:\\YourIcons\\Sample2.ico');
CloseKey;
end;
finally
Reg.Free;
end;
end;
Dengan cara yang sama, kamu bisa memodifkasinya untuk drive yang lain.
ref:
http://www.delphi3000.com/articles/article_4457.asp?SK=Random Articles
- Mencetak Banyaknya jumlah halaman di QuickReport
- Daftar Account Free Hosting yang Di-Approve oleh ServerMERDEKA.Com
- Terbilang
- Selamat Idul Fitri 1428H
- Format Indonesia untuk angka, dll.
- Yang Tidak Bisa Dilakukan Turbo Pascal #4
- Scanning data SMS dr serial
- Image di dalam "Resource"
- Membuat tabel di excel dengan menggunakan editor SQL
- Lazarus Release 3.6
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 6 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