How to Host WCF as Windows Service
To host WCF in a Windows service, you need to create the WCF service, create a Windows service to host the WCF service, and then install and run the Windows service. Step 1: Create a WCF Service Step...
View ArticleCall a JavaScript Function From a Windows Application
To call a JavaScript function from a windows application Create a webbrowser object WebBrowser webBrowserJavascript=new WebBrowser(); Load the html file containing the JavaScript...
View ArticleDebug and Release Builds
The debugger is used to execute the program to “debug” it. When a program is built (compiled) you have a choice of building either a debug version or a release version. A release version is optimized...
View ArticleBouncing Ball in C#
This program illustrates a bouncing Ball in C# using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace...
View ArticlePrint Screen in C#
Implementation of Print Screen in C# The following code snippet shows how to take a screen shot of current screen and how to copy the screen shot to clip board. Bitmap printscreen = new...
View ArticleWindows 8: Activation Watermark Thread Killer!
How many of you are using some kind of activation watermark remover for Windows 8? If you are one among them and a developer in heart, you must be wondering how it is done actually, right? I too was...
View Article