internet kısayolu oluşturma kodu
internet kısayolu oluşturma kodu Kod: Kodu kopyalamak için üzerine çift tıklayın! uses IniFiles;
...
procedure CreateInternetShortcut(const FileName, ********URL : string) ;
begin
with TIniFile.Create(FileName) do
try
WriteString(
'InternetShortcut',
'URL',
********URL) ;
finally
Free;
end;
end; (*CreateInterentShortcut*)
Örnek kullanımı:
//create an .URL file named "About Delphi Programming"
//in the root folder of the C drive
//let it point to http://delphi.about.com
CreateInterentShortcut('c:\About Delphi Programming.URL ', 'http://delphi.about.com ') ;
__________________ SusKun ve Sessiz Mürekkep... Kullanıcı imzalarındaki bağlantı ve resimleri görebilmek için en az 20 mesaja sahip olmanız gerekir ya da üye girişi yapmanız gerekir.
|