Q&A

  • 익스플러러 버전을 알아낼 수 있는 방법이 있나요?
MS의 Internet Explorer의 버전을 알아낼 수 있는 방법이 있을까요.

갈켜주시면 감사...

급한티 안내려 무지 얌전하게 쓰는 중.. 흑!
2  COMMENTS
  • Profile
    구창민 2003.02.26 04:14
    참고하시고 즐거운 프로그래밍 하시길~

    인터넷 부라자의 정보를 얻어오는 팁입니다.

    procedure TForm1.Button1Click(Sender: TObject);
    var
    R     : TRegistry;
    begin
    R := TRegistry.Create;
    With R do
    begin
    // 인터넷 부라자의 위치
       RootKey := HKEY_LOCAL_MACHINE;
       OpenKey('SoftwareMicrosoftWindowsCurrentVersionApp
                PathsIEXPLORE.EXE', False);
       Edit1.Text := ReadString(''); // (Default)
       CloseKey;
    // 액티브 엑스 저장한 곳
       OpenKey('SoftwareMicrosoftWindowsCurrentVersionInternet
                Settings', False);
       Edit2.Text := ReadString('ActiveXCache');
    //  Code base path
       Edit3.Text := ReadString('CodeBaseSearchPath');
       CloseKey;
    // 버전과 빌드 버전
       Edit4.Text := ReadString('Build');
       Edit5.Text := ReadString('IVer');
    end;
    R. Destroy;


  • Profile
    구니 2003.02.26 19:23