Ver Mensaje Individual
  #2  
Antiguo 20-06-2008
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
Código Delphi [-]
uses ShellApi;

procedure TForm1.Button1Click(Sender: TObject);
begin
  ShellExecute(Handle, 'open', 'http://www.google.com', nil, nil, SW_SHOW);
end;

Esto abrirá http://www.google.com en el navegador predeterminado.

// Saludos
Responder Con Cita