RSS2.0

Dynamics CRM Update Rollup 10

Jun 16, 2010

Update Rollup 10 for Microsoft Dynamics CRM 4.0 (KB 979347)

Microsoft has released Update Rollup 10 for Microsoft Dynamics CRM 4.0. It includes updates and hot fixes packaged together for easy deployment. We recommend that you install the update rollup to keep your software performing at its best.

Important: Update Rollup 7 is a prerequisite to this update rollup. The Microsoft Dynamics CRM for Microsoft Office Outlook and Microsoft Dynamics CRM Data Migration Manager components require Update Rollup 7 to be installed. For more information about Update Rollup 7, see the Microsoft Knowledge Base article:
971782: Update Rollup 7 for Microsoft Dynamics CRM 4.0 is available

Update Rollup 10 is available for all languages that are supported by Microsoft Dynamics CRM 4.0.

For more information about this release, see Microsoft Knowledge Base article 979347: Update Rollup 10 is available for Microsoft Dynamics CRM 4.0.

All latest updates now include the Mobile Express add-on.

Windows Mobile express Released For CRM 4.0

May 13, 2010

Microsoft have released Mobile Express for CRM 4.0


You can download it below:

http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=f592ec6c-f412-4fd5-9a80-cd3bcbd26d8b#tm

How to add a scrollbar to CRM web pages

One of the changes between version 3 and 4 of Microsoft Dynamics CRM is how it renders web pages within CRM. This use to supply handy scrollbars when the page was too long, now it just cuts the page off. Fairly annoying if you need to see that extra content you spent ages getting just right!

Fear not, there are a couple of ways of getting round this. The best though in my opinion is to surround your content in a div and give it an id "Frame" and a style="overflow:auto". This won't work on its own as you need to supply a height for the scrollbar to show.  One thing you need to be careful of is remembering that users of CRM have different resolution monitors and the height won't always be a known constant. This is why we give the div an id. It allows the element to be found through JavaScript so that the height can be calculated on the fly.

This JavaScript goes in the head of the page.  To call the function, add onload="calcHeight();" and onresize="calcHeight();" to the body tag. This will cause the height to be calculated when the page first loads and if the whole window is resized.  Happy Scrolling!

<script type="text/javascript">
//function will set the height and width of the iframe 
function calcHeight()
{
//initialize variables
var main_height = null;
var height = null;

// for all except Explorer
if (self.innerHeight) {
main_height = self.innerHeight;
// Explorer 6 Strict Mode
} else if (document.documentElement && document.documentElement.clientHeight) {
main_height = document.documentElement.clientHeight;
// other Explorers
} else if (document.body) {
main_height = document.body.clientHeight;
}
//set final height and width
height = main_height + 'px';

//change the height of the iframe
document.getElementById('frame').style.height=height;
}
</script>

CRM 4.0 RTM

Mar 20, 2008

As a MS CRM 3 user, I am very happy to find that CRM 4.0 RTM (Release To Manufacturing) was signed off by the CRM product team on Friday 14th December 2007.
If you are a Microsoft Dynamics partner and have access to PartnerSource then you can download the following pricing and licensing information:

Microsoft Dynamics CRM 4.0 Pricing and Licensing Guide
Microsoft Dynamics CRM 4.0 Pricing and Licensing Overview Presentation

I will be putting CRM examples, difficulties and interesting tidbits on this blog. Along with useful links to others who are doing the same. There appears to be a lot more interest in this version of CRM with already more than 1 book on this version! :)