Category Archives for "Development"

Dynamics CRM JavaScript: Working with Tabs and Sections-The right way

Back in March I wrote the following article: Dynamics CRM Developer Tip O’ the Day: Working with Tabs. Today I was working on some pre-existing customer JavaScript and ran across this: Xrm.Page.ui.tabs.get(0).sections.get(6).setVisible(false); // Hide section Don’t ever do that! Bad developer! Bad! So again, never, ever use the numerical value to reference a Tab or […]

Continue reading

2 Visual Studio: Where did my macros go

  So I have this open-source project that I created a couple of years ago that helps the Dynamics CRM .NET developer upgrade their code from Dynamics CRM 4.0 to the programming model we now use with Dynamics CRM, which started with Dynamics CRM 2011. I have only had 68 downloads of this project since […]

Continue reading

Recommendation: Aspose Words and Cells

Several of my tools generate Microsoft Excel and Word documents as part of their output and for the longest time, I have used various open-source libraries to provide me with OpenDocumentXML functionality to generate real worksheets and documents, instead of just CSV and plain text files. The only problem, especially with my SnapShot! documentation utility, […]

Continue reading

Developing applications for multiple versions of Dynamics CRM

As most of you know, I have a several add-on products for Dynamics CRM developers, administrators, and consultants. They all share common user interface and application frameworks that I developed several years ago. When I first started writing these tools all I had to worry about was Dynamics CRM 4.0, which was pretty easy. Then […]

Continue reading

2 New tool for Dynamics CRM Developers: CRM REST Builder

Fellow MVP Jason Lattimer (@JLattimer) has released a really cool tool for us Dynamics CRM JavaScript developers: CRM Rest Builder This is a solution you install inside of Dynamics CRM with the main interface looking like this:   Features We can utilize the following SDK methods: Retrieve RetrieveMultiple Create Update Delete Associate Disassociate   Generated […]

Continue reading

Dynamics CRM SDK Nugget: TopCount

I still occasionally run into hidden greatness inside of the Dynamics CRM SDK.  Last week I found a great addition to the QueryExpression and QueryByAttribute classes: The TopCount property. This property was introduced into Dynamics CRM 2011 around the UR10-UR11 timeframe, so if you are on UR11, or later, or have Dynamics CRM 2013, you […]

Continue reading