Convert Measurement in Crystal Report to CM or Inch

iirc, Crystal units are TWIPS (twentieth of a point) [http://en.wikipedia.org/wiki/Twip], 1 twip = 1/1440 inch, they are independent of the number of pixels on the screen; to find out how many twips wide your document is, you check the page size you setup on the report (in inches let’s say, then multiply by 1440). AndContinue reading “Convert Measurement in Crystal Report to CM or Inch”

Enabling Cross-Origin Requests in ASP.NET Web API

By: Mike Wasson – Mike Wasson is a programmer-writer at Microsoft. Introduction Browser security prevents a web page from making AJAX requests to another domain. This restriction is called thesame-origin policy. However, sometimes you might want to let other sites call your web API. Cross Origin Resource Sharing (CORS) is a W3C standard that allows a server to relaxContinue reading “Enabling Cross-Origin Requests in ASP.NET Web API”