Skip to main content

Posts

Showing posts from May, 2014

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();             req_index.Query = indexattribute;             RetrieveMultipleResponse resp_index = (RetrieveMultipleResponse)service.Execute(req_index);             if (resp_index != null)             {                 mcs_QueueItemComplaint = resp_index.EntityCollection;            

Passing Query string between pages in Windows Phone 8 C#

 Using the query string You can pass parameters through the query string, using this method means have to convert your data to strings and url encode them. You should only use this to pass simple data. NavigationService . Navigate ( new Uri ( "/Pasge2.xaml?parameter=value" , Urikind . Relative )); Pick it up on the target page using NavigationContext.QueryString : protected override void OnNavigatedTo(NavigationEventArgs e) {     if (NavigationContext.QueryString.ContainsKey("key"))     {          string val = NavigationContext.QueryString["key"];     } }