Click here to Skip to main content
15,895,656 members
Articles / Desktop Programming / Win32

Desktop Dictionary

Rate me:
Please Sign up or sign in to vote.
3.94/5 (9 votes)
4 Jan 2008CPOL3 min read 49.6K   1.7K   33  
Gets the meaning of a word in clipboard from Encarta/Cambridge online dictionaries
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;

namespace DesktopDict
{
	public class Program
	{
		[STAThread]
		static void Main()
		{
			Application.Run(new frmWordSearch());
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
I am Suresh Reddy B.V. Currently I am working on ASP.Net, C#.

Comments and Discussions