Monthly Archives: January 2016

Why do you not blog: A Challenge

Everyone should have a blog, as I have stated many times in webinars or in conference presentations.  Everyone has unique experiences that could probably benefit the community as a whole, should you choose to. How I got started Way back when, in 1995, I had to learn C#, .NET, and SharePoint in about a three-week […]

Continue reading

MVP Renewed

I got MVP renewal package today: Now just waiting on my 10 year disk! Still one of the greatest honors of my professional life and I am in the most excellent company.

Continue reading

Transformer! 3.0 is available. Convert your CRM 4.0 JavaScript to 2011+ in minutes

Version 3.0 of Transformer! for Dynamics CRM is now available. The main addition to this version is the ability to read Dynamics CRM 2011+ solution files. In addition, the following conversions were added: crmForm.all.name.DataValue = crmForm.all.ownerid.InnerText; Converts to: Xrm.Page.getAttribute("name").setValue(Xrm.Page.getAttribute("ownerid").getValue()[0].name); if (crmForm.all.new_location.InnerText != "Pool") { Converts to: if (Xrm.Page.getAttribute("new_location")[0].name != "Pool") { var tab = document.getElementById(‘tab’ […]

Continue reading

Transformer! 3.0 for Dynamics CRM Released

Version 3.0 of Transformer! for Dynamics CRM is now available. The main addition to this version is the ability to read Dynamics CRM 2011+ solution files. In addition, the following conversions were added: crmForm.all.name.DataValue = crmForm.all.ownerid.InnerText; Converts to: Xrm.Page.getAttribute(“name”).setValue(Xrm.Page.getAttribute(“ownerid”).getValue()[0].name); if (crmForm.all.new_location.InnerText != “Pool”) { Converts to: if (Xrm.Page.getAttribute(“new_location”)[0].name != “Pool”) { var tab = document.getElementById(‘tab’ […]

Continue reading

More Azure ADAL error handling

Back in October I published a post titled: How to capture moble login errors with Azure ADAL. Here is an additional piece to add to that article. Background I am working on a Xamarin Forms app that uses Azure Active Directory for authentication. If you’re not familiar with this process, it uses the OAuth protocol […]

Continue reading