How to remove selection rectangle using CSS

Posted on September 13th, 2009 in HTML & CSS | 4 Comments »

recty

Have you ever noticed that when you click a link (in Firefox,IE etc) a dotted rectangle appears around it? (see the image above)

I don’t have a problem with it. But if you find it boring and want to get rid of it. Then I’ve the best solution for you. You can get rid of it with one line of code.

All you have to do is to insert this into your CSS:

* { outline: none; }

And those rectangles (or outlines) will never appear again.

Draw a Rectangle in C# using Mouse

Posted on September 7th, 2009 in C#, Tutorials | 15 Comments »

Draw a Rectange in C# using Mouse

This tutorial will show you how to draw rectangle in C# using Mouse. You can normally draw a rectangle by putting the values manually. But that doesn’t always work. Sometimes you’ll require the rectangle to be drawn automatically (without putting values manually). This tutorial will show you how to do that. Let’s begin: Read the rest of this entry »