Browse by Tags

All Tags » C# (RSS)
We've decided to release another component we've been using internally. This little webcontrol allows you put pass data from a Web Form to Dynamics CRM 4. How does it work? Create a UserControl to layout the form. <%@ Control Language="C#" %> Topic...
Posted by gperera | 1 comment(s)
Filed under: , ,
I've been trying to change the icons under History for each entity to show the direction of the email or phone call. Using Fiddler I found out that areas.aspx was responsible for rendering the grid when you click on History, then when you click on the...
Posted by gperera | 1 comment(s)
Filed under: , , ,
UPDATE 08/01/2009 - Project is now on CodePlex ( http://www.codeplex.com/crmnumbering/ ) MYOB can only take 8 characters and accountants don't like seeing cryptic Invoice Numbers that CRM generate, so we ended up writing a custom plugin that automatically...
Posted by gperera | 7 comment(s)
Filed under: , ,
Recently we created a payroll solution which integrated with Microsoft Dynamics CRM 4, part of that was to validate the Bank Account and IRD Numbers. Here's a screenshot of a sample workflow. You can download the code from here . Solution contains a Util...
Posted by gperera | 2 comment(s)
Filed under: , ,
We decided to use FilteredViews instead of FetchXml for an internal project, but we ran into couple of problems. You can't access data from the FilteredViews using ASP.NET since it runs under NETWORK SERVICE (by default (app pool)), FilteredViews filter...
Posted by gperera | 1 comment(s)
Filed under: , , , , ,
I wanted to find a better way to work with dynamic controls. This is what I was doing before. Control c = this .wrapper.FindControl( "dynamictextbox" ); TextBox tb = c as TextBox ; if (tb != null ) { Response.Write(tb.Text); } as you can see doing this...
Posted by gperera | with no comments
Filed under: , ,
The new adapter architecture of ASP.NET v2.0 allows you to do some amazing things, We'll use this new feature to store viewstate in sql. Firstly you must add the special folder App_Browsers to your project, then create a new .browser file and add the...
Posted by gperera | with no comments
Filed under: , ,
A while back I needed to read a mpeg file and retrieve the video/audio information. I didn't want to read the mpeg specification to write one from scratch so after googling around I found a project on sourceforge called mpgtx, it's written in C and has...
Posted by gperera | 2 comment(s)
Filed under: ,
More Posts