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
- Extreme Programming
- Marhaban Yaa Ramadhan
- PascalClass #1: Analisa Database dan Machine Learning
- Mengetahui semua printer yg ter-install
- Konversi Bitmap ke Text atau Text ke Bitmap
- Menampilkan Aplikasi Yang Berjalan (visible)
- Random Password text
- Lazarus Release 3.4
- Meng-Indonesia-kan Message Dlg
- Makna Pascal di Pascal Indonesia
Last Articles
Recent Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 4 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