Recently I have encountered some nasty problems trying to build a Facebook login system. That’s why I am going to explain a full tutorial about every aspect you need to know about it.
1. Register your application
Go to http://developers.facebook.com/setup/ and enter the site name(it could be any) and the site URL(if...
read more
I bet everyone has seen, especially with the advent of Web 2.0, different sorts of text pieces that have a reflection beneath them which gives the impression the text is “sitting” on a surface.Although the effect is very easy to do in Photoshop, I decided to show you that it can be as easy and enjoyable in...
read more
Recently I needed to get the Content-Encoding header within a C# application.After trying to figure out why the response was empty, and after reading different community posts where other users had the same problem and none of the suggestions seem to solve it, I’ve decided to post my solution for further use.
Let’s take...
read more
In the following article I’m going to show you how to make an autocompleting Combo Box in C#, that uses a SQL database as its custom source of values.First, I’m going to display the whole implementation and afterwards explain the code in detail.
Database Structure
Table name: keywordsList
Column Name
Data...
read more
Recently I had a problem that required me to do a rotation of a line keeping the original point fixed. A rotation is a movement of an object in a circular motion, mathematically a rotation is a rigid body movement which, unlike a translation, keeps a point fixed.
public partial class Rotate : Form
{
public Bitmap...
read more