-
How to add Overlay in Windows phone 8
Windows Phone is windows mobile operating system from Microsoft. In my project, there was a requirement of Overlay panel whenever the data is requested from server (i.e., when task takes some time to execute). Here, I am going to show you a sample example of using overlay in windows phone project. Overlay, is it a…
-
Displaying Postscript text and Vector images on PDF in C#.net using Imageglue
Postscript is a language used for creating vector Images,Vector images are made up of many scalable objects and they are defined by mathematical equations rather than the pixels ,so they always renders higher quality images. The Advantages of Vector Images over Bitmap images 1.Vector images are resolution independent, how much ever we resize the image…
-
Reading GMAIL Inbox using ASP.NET
In this blog I will explain how to read emails from pop3 server using the free open source library OpenPop.Net. This library provides you very easy API to access and read emails from the POP3 Servers. Download the library from the following URL. Download OpenPop.Net Once you have the library we can start building our…
-
How to implement and use Extension Methods in C#
Do you wish to extend the built-in types with new methods? Want to extend custom types with new methods? In C#, we can use the Extension Methods to extend both built-in types and custom types. These extension methods are introduced in C# 3.0 What are Extension Methods? Extension methods are special kind of static methods…
-
Deploying an Outlook 2010 Add-in Using C#.NET And Visual Studio 2010
How to deploy an Outlook 2010 Add-in Using C#.NET And Visual Studio 2010 In the previous blog, we walked through the steps to build an outlook 2010 add-in, how to create a custom task pane, add a custom context menu item and add a ribbon in the Outlook 2010. In this post, I’ll take you…
-
HTML Parser
Are you looking for any HTML Parser? Want to traverse through HTML DOM elements? Want to read properties and its values of HTML element? Want to add properties to HTML elements dynamically? Want to modify HTML form at runtime? JQuery is one of the best solution to do all these at client side. But what…