Skip to main content

Posts

Change App Name and Logo Windows Phone 8

if anybody required to change the APP NAME and Logo which is display in Windows Phone 8. Steps are 1- Double Click WMAppMainfest.xml  in IMAGE 1 2-Another page will be open where you can Change App Name and App Logo in IMAGE 2 Image 1    Image 2

Retrieve Entity and EntityCollection From CRM 2011 Plugin C#

For EntityCollection    private EntityCollection RetrieveEntityByAttribute(ref IOrganizationService service, string _Entity, string[] _ColumnSet, string[] _AttributeRange, object[] _AttributeValue)         {             EntityCollection mcs_QueueItemComplaint = null;             ColumnSet Indexcol = new ColumnSet(_ColumnSet);             QueryByAttribute indexattribute = new QueryByAttribute();             indexattribute.EntityName = _Entity;             indexattribute.Attributes.AddRange(_AttributeRange);             indexattribute.Values.AddRange(_AttributeValue);             indexattribute.ColumnSet = Indexcol;             RetrieveMultipleRequest req_index = new RetrieveMultipleRequest();     ...