Banyak aplikasi termasuk diantaranya browser internet memiliki fitur untuk mengubah wallpaper. Kode berikut memungkinkan para delphist untuk mencobanya juga.
program wallpapr; uses Registry, WinProcs; procedure SetWallpaper( sWallpaperBMPPath : String; bTile : boolean ); var reg : TRegIniFile; begin // HKEY_CURRENT_USER // Control PanelDesktop // TileWallpaper (REG_SZ) // Wallpaper (REG_SZ) reg := TRegIniFile.Create( 'Control PanelDesktop' ); with reg do begin WriteString( '', 'Wallpaper', sWallpaperBMPPath ); if( bTile )then begin WriteString( '', 'TileWallpaper', '1' ); end else begin WriteString( '', 'TileWallpaper', '0' ); end; end; reg.Free; // // let everyone know that we changed // a system parameter // SystemParametersInfo( SPI_SETDESKWALLPAPER, 0, Nil, SPIF_SENDWININICHANGE ); end; begin // delphi.bmp akan dijadikan wallpaper rata tengah SetWallpaper( 'c:/delphi.bmp', False ); end.  | 
Random Articles
- Proposal Proyek: qxpascal
 - DateTimePicker di dalam DBGrid
 - Setting Alternatif Delphi IDE
 - free barcode component for delphi 4,5,6,7
 - Extreme Programming
 - Pascal Indonesia Mentorship Program
 - Dynamic ODBC untuk MySQL dan Ms Access
 - Menghitung Selisih Waktu [billing]
 - Membuat Plugin Untuk Aplikasi Delphi
 - Selamat Menunaikan Ibadah Suci Ramadhan 1428 H, Mohon Maaf Lahir Bathin
 
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