Fórum Com saber em RunTime qual Navegador é o padrão #458321
11/10/2013
0
Tem como saber em RunTime qual o nagegador padrão ?
Uso Delphi-7 + Firebird.
100+
ANT.CARLOS/SP

Antonio Jesus
Curtir tópico
+ 0Posts
26/10/2013
Antonio Jesus
Gostei + 0
27/10/2013
Marcos Saffran
verifique o registro do windows "HKEY_CLASSES_ROOT\http\shell\open\command"
Gostei + 0
28/10/2013
Itamar Souza
Tem como saber em RunTime qual o nagegador padrão ?
Uso Delphi-7 + Firebird.
100+
ANT.CARLOS/SP
Espero ter ajudado.
att
procedure TForm1.BitBtn1Click(Sender: TObject);
begin
Label1.Caption := BuscarBrowserPadrao;
end;
function TForm1.BuscarBrowserPadrao: String;
// Retorna o Path de seu Browser padrão
// Requer a Registry declarada na clausual Uses da unit
var
Browser: String;
I: Integer;
Reg: TRegistry;
begin
Reg := TRegistry.Create;
with Reg do
begin
try
RootKey := HKEY_CLASSES_ROOT;
if not OpenKey('httpshellopencommand',False) then
begin
Browser := '';
end
else
begin
Browser := ReadString('');
end;
CloseKey;
finally
Free;
Reg := nil;
end;
I := Pos('.exe',LowerCase(Browser));
if I > 0 then
begin
Browser := Copy(Browser, 1, (I+3));
end;
I := Pos('"',Browser);
while I > 0 do
begin
Delete(Browser,1,I);
I := Pos('"',Browser);
end;
end;
Result := Browser;
end;
Gostei + 0
19/11/2013
Antonio Jesus
O correto é este:
1 2 3 4 5 6 7 8 9 10 11 12 | try RootKey := HKEY_CLASSES_ROOT; if not OpenKey('http\shell\open\command',false) then begin Browser := 'erro.........'; end else begin Browser := ReadString(''); end; CloseKey; finally Free; Reg := nil; end; |
Gostei + 0
19/11/2013
Antonio Jesus
2-Como pegar a Versão do Navegador padrão ?
Desde já meus agadecimentos
100+
ANT.CARLOS/SP
Gostei + 0
22/11/2013
Antonio Jesus
Atualizo o IE como navegador padrão e edito os registro do windows e vejo que o nagavedado continua o FireFox.exe.
No win-XP a atualizacao funciona normal, problema mesmo só no win-7 32 e 64, win-8 aind não vi.
100+
ANT.CARLOS/SP
Gostei + 0
Clique aqui para fazer login e interagir na Comunidade :)