Getting CRM User Date and Time Format Setting in Silverlight Microsoft CRM 2011
Views (1179)
If you are working with Silverlight web resource and you need to get current crm user date time format then you can query usersettings entity and get datetime format setting for user. You can use below code for the same: public void RetrieveUserSettingRecord(Guid _UserID) { try { this._d.BeginInvoke(delegate() { EntityReference EntityID = new EntityReference(); EntityID.Id [...]

Like
Report
*This post is locked for comments