|
|
Windows Forms Drop Shadow
|
Total Hit (16372) |
«code LangId=3»public class Form1 : Form
{
private const int CS_DROPSHADOW = 0x00020000;
public Form1()
{
InitializeComponent();
}
protected override CreateParams CreateParams
{
get
{
....Read More |
Rating
|
|
|
Html Encoding and Decoding
|
Total Hit (6838) |
Some time you need funky code don't bother yourself by hard coding to every things when Microsoft give you facility.
Simply add refreces of System.Web to your project then where you need Encoding write this line
System.Web.HttpUtility.HtmlEncode()
Sample example
«code LangId=3»string String
....Read More |
Rating
|
|
|
|