Register daki
Kod: Tümünü seç
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION
ben dpr dosyasının içine aşağıdaki kodu ekliyorum .
Kod: Tümünü seç
Uses Registry;
try
r := TRegistry.Create;
r.RootKey := HKEY_CURRENT_USER;
r.OpenKey('\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION', True);
r.WriteInteger(ExtractFileName ( Application.ExeName) , 11001);
r.CloseKey;
except
end;
r.Free;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Internet Explorer 11 için 11001
Internet Explorer 10 için 10001
Internet Explorer 9 için 9999 değerini kullanırsınız
internette FEATURE_BROWSER_EMULATION diye aratırsanız güncel ve diğer değerleride görebilirsiniz ..