Friday, August 22, 2008

Towards CRM 5.0

CRM 5.0 scheduled for release 18 months from now.
What's it going to have?

July '08 Microsoft released the "Statement of Direction" for the Dynamics CRM 5.0.

Key features:
  • Make it more user-friendly and interactive with other Microsoft programs
  • Improvements in contact and account management.
  • Improving team effectiveness.
  • Better productivity and more features in call centers.
  • Improvements in outbound communication and scheduling.
Detailed information.

Tuesday, August 5, 2008

Apply colors to CRM form labels

To give the CRM form labels a special appearance you may want to have different colors to them.

Write this code snippet on OnLoad Event of the form:
var str = "";
str += "First Name";
str += "<SPAN style='color:blue'> Only for info. </SPAN>";
crm_form_label.innerHTML = str;

Happy coloring form labels!!