Value++ ;
}
private void DrawProgress(Graphics g,Rectangle rect)
{
int iWidth = (Value*rect.Width)/Max ;
Rectangle DrawRect = new Rectangle(rect.X,rect.Y,iWidth,rect.Height) ;
SolidBrush front = new SolidBrush(this.ForeColor) ;
g.FillRectangle(front,DrawRect);
if (Rate)
{
int iRate = Value*100/Max ;