Posts Tagged: Drawing

Color Picker Dropdown using C#

Posted by & filed under .Net.

While playing around one of hobby project, I found there is a nice color picker dropdown available in WordPad, for setting the font color. I was using Windows Color Dialog. So I thought of implementing a WordPad like color picker. And I think I almost readed my goal. I need to try this in the [...]

Captcha using ASP.Net and C#

Posted by & filed under .Net, .Net 3.0 / 3.5, ASP.Net, Visual Studio.

Few days back, I got some question related to Captcha (security mechanism, which helps web masters to avoid spam) in a Forum. So I thought of implementing one. I got few nice scripts in Code Project, its a simple implementation, no too much logic and not too complex to understand. Also I am using an [...]

Loading Image from URL in Windows Forms

Posted by & filed under .Net, .Net 3.0 / 3.5, WPF.

Recently I got a chance to work on Windows Application, it is Twitter client using C#. In that I need to show some Image from a URL. I thought like Microsoft will provide some way to load Images from URL and I tried to do the same with “Image.FromFile” method. But it failed. Then I [...]