29 Ocak 2014 Çarşamba

İnternet Explorer Ana Sayfasını Değiştirmek

Merhaba,
Aşağıdaki Delphi kod ile tüm ie sürümlerinin ana sayfasını değiştirebilirsiniz.

?
function IEHomePage(PageName: string): Boolean;
begin
   with TRegistry.Create do
   try
     RootKey := HKEY_CURRENT_USER;
     OpenKey('Software\Microsoft\Internet Explorer\Main', False) ;
     try
       WriteString('Start Page', PageName) ;
       Result := True;
     except
       Result := False;
     end;
     CloseKey;
   finally
     Free;
   end;
end;
?

 <span style="font-size: 1.231em; line-height: 1.538em;">IEHomePage('<a href="http://www.ankaakademi.com" rel="nofollow">www.ankaakademi.com</a>');</span>

Hiç yorum yok:

Yorum Gönder