Parsi Coders

نسخه‌ی کامل: سورس کد بدست اوردن ورژن اینترنت اکسپلور(دلفی)
شما در حال مشاهده نسخه آرشیو هستید. برای مشاهده نسخه کامل کلیک کنید.
درود
با سورس زیر میتونید ورژن اینترنت اکسپلور رو در دلفی یدست بیارید.GetIEVersionStrThe the version of Internet Explorer installed on the computer. Returns '' if IE is not installed or if it is earlier than v4.
کد پی‌اچ‌پی:
  
کد پی‌اچ‌پی:
[code]
function 
GetIEVersionStrstring;
var
  
RegRegistry.TRegistry// registry access object
begin
  Result 
:= '';
  
Reg := Registry.TRegistry.Create;
  try
    
Reg.RootKey := Windows.HKEY_LOCAL_MACHINE;
    if 
Reg.OpenKeyReadOnly('Software\Microsoft\Internet Explorer'then
    begin
      
if Reg.ValueExists('Version'then
        Result 
:= Reg.ReadString('Version');
    
end;
  finally
    
Reg.Free;
  
end;
end;

[/
code
کد پی‌اچ‌پی:
  
Required units: Windows, Registry.Required snippets: None.See also: None.