Feed on
Posts
Comments

Archive for January, 2007

I found this fantastic tool developed by Microsoft that lets you manipulate HTML right in the browser. You can change CSS, Table sizes, allignements, disable JavaScript…You name it!
Download here

Read Full Post »

Disable Compilation Error In C#

To disable a compilation error in C#, you only need to put this code just before the method declaration:
#pragma warning disable xxxx
Where xxxx is the error code from compilation likeĀ 0429 for example.

Read Full Post »