Software / Technology Tips

Customize tool tips in form label of CRM 2011

To achieve this functionality create an xml file that will hold the tooltip information. The following code illustrates it use for testing Now use java script file to call above xml file for tool tips. The jquery library should include in that global java script file. the following code illustrates java script file ——- function…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Avoiding “virtual memory too low” warnings in Win XP and Vista

We enounter the above described problem when physical RAM and Virtual RAM (usually created  on hard disk) together are not sufficient to take care of the current requirement. This can also happen when upper limit for Virtual Memory has been manually set. Further, if you upgrade your physical memory (RAM) the system may continue using the same amount…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

jQuery data() method

It is a nice method provided by jQuery which allows us to store arbitrary data in specific DOM elements. This method gives us the facility to store data using key and value as well as to access the data using the specific keys. In some situations this can be be very useful. Suppose you are…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

SessionStorage v/s Cookies

SessionStorage is an alternative to session cookies, but more powerful. The data recorded in the storage are available in all web pages from the same site and to the same user during the session. However, the real advantage is that when using Session Storage it is possible to carry out multiple transactions in different windows…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Working with Windows Phone Application and Secondary Tiles

By changing the image now we can get the Application Tile of desired background image. 3.As we know that we can’t  create an Application tile programmatically but we can modify      it. 4.Following are the steps need to follow.      >> Lets create an Images folder where we put our all images which will be…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Custom Errors in ASP.NET

Recently going through the Exception handling and logging, I found an interesting topic which I would like to share. “Exceptions”, family member to every language/technology used.These are sometimes irritating for the developers. If its irritating for developers what would be the condition of the end user when he/she views the “yellow screen populated with God…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Make your website faster: Adding Javascript and CSS files at run time

If you want to load your website faster and have good ranking for your website in y-slow of similar tools please go through this tip. I have discovered a technique for adding javascript and CSS files at run time, it has been checked in various ways and I am also giving the sample code to…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Get WebResources Related To An Entity Using REST END POINT In MS Dynamics CRM

Webresources associated to an Entity are stored inside “FormXml” of that entity as follows. To get the FormXml of an entity we need to query “SystemForm” with some filter condiion . The following code snippet helps us to find WebResources associated to an Entity. var WebResourceArray = Array(); var filter, sytemforms, formxml; filter = "Type/Value…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

ASP.NET AJAX SlideShow Extender

In ASP.NET AJAX Control toolkit there is an extender known as SlideShowExtender. This can be used to create a Slide show by looping through the images. The images are shown in the SlideShow by using a PageMethod or a Webservice. Example: /*Add a script manager in your page */ /*This is the initial image that…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

HTML5 Offline Web Applications

The application cache is controlled by a plain text file called a manifest, which contains a list of resources to be stored for using when there is no network connection. The list can also define the conditions for caching, such as which pages should never be cached and even what to show the user when…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!