- Posts tagged Internet Explorer
- Explore Internet Explorer on posterous
Internet Explorer 9 - First Impressions
I've just downloaded and installed the public beta of the next version of Internet Explorer, IE9 and wanted to share my first impressions.
Once installed, the first noticeable difference is how minimal the interface has become. The address bar and tabs section seem to take up roughly 66% less screen space, since the address bar, search box and tabs are now all located on the same row. As I usually have a lot of pages open, I didn't think I'd like the repositioning of the tabs, but it really hasn't caused me any problems.
The next thing I noticed is the speed. It really flies. Microsoft have added GPU acceleration to IE9, so a lot of image rendering is now performed by your graphics card rather than your CPU.Another great new feature, is the ability to add web shortcuts to your taskbar. You just drag the favicon from the address bar to your taskbar to create a shortcut. This is great if you want quick access to applications such as your email and it really feels like you're launching an app rather than a browser.
IE8 crashing when using picklists in Advanced Finds
I've been having an issue where IE8 would crash when trying to use picklists in advanced finds (see below example).
It may not be a common issue, but I posted it on the MS partner forums and got the below response which has fixed it for me, so hopefully it will help someone else out too!
Edit AdvFind.aspx and add the following code. AdvFind.aspx can be found in the CRM web directory\AdvancedFind
NOTE: The code needs to be added right below function window.onload(){
<% if (Request.Params["AutoRun"] != "False")
{
%>
if (location.href.indexOf("?") > 0)
location.href = location.href + "&AutoRun=False";
else
location.href = location.href + "?AutoRun=False";
<%
}
%>



