[CODE]System.Drawing.Graphics labelGraphics = this.textBox1.CreateGraphics();
string[] drawString = { "_", "_", ":", "_", "_" };
System.Drawing.Font DrawFont = new System.Drawing.Font("Arial", 9);
float x = 1 ;
float y = 1;
System.Drawing.StringFormat drawFormat = new System.Drawing.StringFormat();
System.Drawing.SolidBrush drawBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Red);
for (int i = 0; i < drawString.Length; i++)
{
drawBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Purple);
labelGraphics.DrawString(drawString[i], DrawFont, drawBrush, x+i*16 , y, drawFormat);
drawBrush.Dispose();
}
DrawFont.Dispose();
labelGraphics.Dispose()[/CODE]