Predefined type 'Microsoft.CSharp.RuntimeBinder.Binder' is not defined or imported – Silverlight

Today I got this error when I was preparing a Silver light training session, when I tried to build my Silver light web resource, it failed and when I check error list I got below error message: When I tried to search, I found we need to include “Microsoft.CSharep.dll” reference in our project, and I once I added it from… Read more »

Step By Step Hiding Ribbon Button in MS CRM 2011 Part2

In our last post we explained how we can hide ribbon button on MS CRM 2011 entity form manually by modifying ribbon xml, in this post we are going to explain how this can be implemented using ribbon editors addon available in market. We are going to use Ribbon Workbench for CRM 2011 for this demo, so let’s start: Step1:… Read more »

Step By Step Hiding Ribbon Button in MS CRM 2011 Part1

If you have a requirement to hide ribbon buttons in MS CRM 2011 then this post is will help you. Sometime there some system ribbon button which is not required by our client, so if we need to hide them we have two below options: Modify Ribbon XML file manually. User Ribbon Editors addon available. Let’s say we need to… Read more »

Connect with your Customers Using Skype

If your organization is updated with Microsoft CRM 2011 rollup then you can use Skype or Lync to connect to your customer. You can select your option from Settings->System->Administration. To use this functionality you need:- Skype or Lync installed on your machine. Prefix country code and area code before the contact number of customer. Once you have contact number entered for… Read more »

Get All users based on Business Unit -MS CRM 2011

If you are looking for a code to get all the users for a particular business unit, you can use below code private EntityCollection RetrieveUserBasedOnBusinessUnit(IOrganizationService _CrmService,Guid BUId)        {            QueryExpression _Query = new QueryExpression                   {                       EntityName = “systemuser”,                       ColumnSet = new ColumnSet(true),                       Criteria =                       {                          Conditions =                        {                            new ConditionExpression                            {                                AttributeName=”businessunitid”,                                Operator=ConditionOperator.Equal,                                Values={BUId}                             }                        }                       }                   };            return _CrmService.RetrieveMultiple(_Query);       … Read more »