by Phil Adams
26. October 2011 19:30
The updated version of the SDK is available for download CRM 2011 SDK
by Phil Adams
29. July 2011 10:41
In CRM 3 and CRM 4 you could maximise a form to use full screen with the following: window.moveTo(0,0); window.resizeTo(screen.availWidth, screen.availHeight); In CRM 2011 this has changed you must add .top to your javascript as below: window.top.moveTo(0,0); window.top.resizeTo(screen.availWidth, screen.availHeight);