My new personal blog is up and running. Enjoy reading random thoughts š
Author: Cornel Croitoriu
CWS Media for WPF
Long story short, this article teaches you how to easily implement skinning and language modules for Windows Presentation Foundation (WPF). To download the main xaml for WPF and the associated C# class, click here. All the required dll files can be downloaded by clickingĀ here. For the required Skin ManagerĀ and Language ManagerĀ source files, click here. For… Continue reading CWS Media for WPF
Thank you
A very special thank you to all the people supporting me during this period, especially the xRM team and my employer!
MCC Award
Dear all, I’m glad to announce you that our staff has a new award: Microsoft Community Contributor: Thank you all for your support and encouragements.
Increase CRM 2011 Workflow Depth Limit
The solution applies for CRM 2011 Beta, RC, RTM and RTM (with Rollup 1): http://social.microsoft.com/Forums/en/crm/thread/1b164a2f-d2a2-4a6a-813e-716c8771ee78
CRM 2011 – Sharing records in IFRAME
Hello, Unfortunately, if you want to use the sharing dialog in an IFrame, you’ll receive several errors (most of them regarding _a.length object). To solve the issue, you can try the following workaround. It’s not supported, but it’s safe. Still, I recommend you backup any file before modifying it. Go to %programfiles%\Microsoft Dynamics CRM\CRMWeb\_grid\cmds and… Continue reading CRM 2011 – Sharing records in IFRAME
Video Player & Audio Player for WPF
Here are two Media Players you can use in your WPF projects: Video Player *** Audio Player And here are the most expected links: Video Player & Audio Player Demo Video Player & Audio Player Source Code
WPF SoccerBall 3D Model
The 3D SoccerBall model for WPF can be placed in a transparent window, as simple as possible, like shown in the following code: Use the mouse left button to move the ball or the right button to rotate it. To download a Demo project, click here. To download the Source Code, click here. The final… Continue reading WPF SoccerBall 3D Model
JavaScript Serial Number Generator
To generate a random serial number, based on a given mask, you can use the following code: // Serial Number Generator // Generates a random number in a certain interval function GenerateRandomNumber(min,max) { return Math.floor(Math.random() * (max – min + 1)) + min; } // Generates a random alphanumberic character function GenerateRandomChar() { var chars… Continue reading JavaScript Serial Number Generator
Useful JavaScript functions & methods for CRM 2011 – CWS.CRM.Utils.js Library
Starting with this great article, I’ve created a JavaScript Library with several useful functions & methods for CRM 2011, such as: – CRM Service class to Create, Update, Retrieve, RetrieveMultiple, Delete records in CRM (SOAP based); – Custom RuntimeĀ Advanced Filtered Lookup support; – Set Lookup Value programmatically support – Guid Generator – CRM Form Buttons… Continue reading Useful JavaScript functions & methods for CRM 2011 – CWS.CRM.Utils.js Library