MS Silverlight 2 released October 14, 2008, you can try it out!
http://silverlight.net/default.aspx
|
MS Silverlight 2 released
Pixie is an easy-to-use color picker. Just simply point to a color and it will tell you the hex, RGB, HTML, CMYK and HSV values of that color. Pixie works on Windows 95/98/Me/NT/2000/XP/Vista, any body who is dealing with web programming or design needs to have such a simple and perfect tool to make it easy on Internet life. Pixie will also show the current x y position of your mouse pointer. If you need to work with colors, then it's the tool which you need.Pixie a fast and tiny color picker utility
How to get Tables' name, Columns' name, and Column's type in Sql 2005

Cropper - Point and Shoot Screen Captures


JR Screen Ruler - A tool to measure a picture size
How to limit the number of rows to enter in DataGridView


How to make Visual Studio Full Screen
How to clear "Recent Projects" in Visual Studio
myTreeNode = new TreeNode(myMovie.movieName, 0, 0);
treeViewMovies.Nodes.Add(myTreeNode);for next image you can use 1 and so .How to add images for a Node in TreeView control
public class MyTextBox : TextBox
{
public MyTextBox()
{
this.SetStyle(ControlStyles.UserPaint, true);
}
protected override void OnPaint(PaintEventArgs e)
{
SolidBrush myDrwBrush = new SolidBrush(Color.Black);
e.Graphics.DrawString(this.Text, this.Font, myDrwBrush, 0F, 0F);
}
}
- Instantiate an object from the new class on your formMyTextBox myTxtBox = new MyTextBox();
myTxtBox.Location = new System.Drawing.Point(12, 36);
myTxtBox.Name = "myTxtBox";
myTxtBox.Size = new System.Drawing.Size(260, 20);
myTxtBox.Text = "This is a test text box";
this.Controls.Add(myTxtBox);
- Disable it in your code to see the effect:this.Controls["myTxtBox"].Enabled = false
In addition, I found another similar solution in the following URL:Change ForeColor of a TextBox control