Browsing All Posts published on »February, 2011«

CRM 2011 – Top CRM blogs

February 28, 2011

2

Microsoft Dynamics world recently had a survey to find out the best CRM blogs, Richard Knudson discusses the top 5 on his blog this week, which you can read about here.  Although Richard is talking about it because he is featured at number 4.  He certainly deserves to be in the top 5, his blog […]

CRM 2011 – Getting Started with LINQ in CRM 2011

February 28, 2011

3

I have been using LINQ with CRM 2011 and I have to say it’s awesome.  It’s a great way to code without having to write connectors to SQL databases.  I used to spend hours and days writing database code when I was a Java programmer, not to mention I am always forgetting how to write […]

Sample CRM Developer Resume/CV

February 28, 2011

4

I caught a link the other day to a sample CRM Developer CV.  Although the samples are very general they do give an insight to what recruitment consultants think should be on a CRM developers CV. They are of interest to me not because I am looking for a job but because it gives me […]

CRM 2011 – How to use external Javascript files

February 26, 2011

0

There are a few javascript files which you want to call, like json2.js file and probably jquery.js file. I couldn’t understand initially how you to call another Javascript file from within my javascript file. The actual answer was quite obvious after I worked it out. you have to import the Javascript file as a webresource. […]

IE8 – debug windows opens out of screen

February 26, 2011

0

    Other ways to maximize an open window: Double-click the top of an open window just below the top edge. To restore a maximized window to its original size, double-click the top of the window again. On the taskbar, press Shift and right-click a taskbar button or a preview of an open window, and […]

CRM 2011 – How to set an attribute label in Javascript

February 25, 2011

5

It took me a while to figure this out but finally thanks to this forum post I did it.  I think what was confusing me was you had to get the control and then set the label. var affectedControl = Xrm.Page.ui.controls.get(fieldname); var affectedAttribute = Xrm.Page.data.entity.attributes.get(fieldname); affectedAttribute.setRequiredLevel(‘required’); affectedControl.setLabel(‘New label’);

How To Use Control Alt Delete in Remote Desktop

February 25, 2011

1

The question popped up today and I’m sure I had found another way round this before but I couldn’t remember. After googling around I finally found the answer and was shocked it was so easy You just press Ctrl + Alt + End this also works even if the screen isn’t full screen Awesome

Learning Resource – Getting started with Silverlight

February 24, 2011

0

I have started to have a look at silverlight and found there is a really good resource for getting started with Silverlight http://www.silverlight.net/getstarted/ It has lots of videos, labs, tutorials.  This is probably a good place to start to get to grips with silverlight.  Looking at all the material I feel there is a long […]

CRM 2011 – How to add crmsvcutil to the External tools menu in Visual Studio

February 24, 2011

5

I am loving the CRM 2011 early bound functionality.  The one draw back is it you have to run the crmsvcutil quite often if you are adding/removing fields from your entities. If you want to see a quick example of using the crmsvcutil to generate you classes check this blog out simple crmsvcutil example In visual […]

web.Config Error – duplicate scriptResourceHandler section defined

February 24, 2011

1

this was the annoying error I was being plagued with today Config Error There is a duplicate ‘system.web.extensions/scripting/scriptResourceHandler’ section defined I was getting this error today and it was very annoying but then when you work out what the problem is quite interesting, especially if like me you are studying for the 70-515 .NET web […]