current user\software\microsoft\internet explore\main\window title

解决方案 »

  1.   

    var  ARegistry     : TRegistry;
    begin
      ARegistry     := TRegistry.Create;
      with ARegistry do    {创建一个TRegistry对象实例  }
      begin
        RootKey := HKEY_Current_user;{指定根键为HKEY_LOCAL_MACHINE}
        OpenKey( software\microsoft\internet explore\main', True );
        WriteString( 'window title ', 值 );
      end;
      CloseKey;    {关闭主键,同时将信息写入注册表}
      

  2.   

    写一个filename.reg内容如下:
    REGEDIT4[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
    "'window title"="youtitle"
    保存->双击->确定=ok