I used system.drawing. graphic in C# to draw the Rectangle and Ellipse in PictureBox. In my PC and other my buddy PC show the drawing graphic and color.
But my customer PC doesn't show the drawing graphic. In my customer PC, i already installed .net Frame Work 2.0 (SP1). I don't know why missing? I write code like this...
Pen penMi = Pens.Blue;
void DrawAllMi(Graph ics g)
{
g.DrawRectangle (penMi, x1 - 4, y1 - 4, 8, 8);
g.DrawEllipse(p enMi, x1 - 5, y1 - 5, 10, 10);
}
But my customer PC doesn't show the drawing graphic. In my customer PC, i already installed .net Frame Work 2.0 (SP1). I don't know why missing? I write code like this...
Pen penMi = Pens.Blue;
void DrawAllMi(Graph ics g)
{
g.DrawRectangle (penMi, x1 - 4, y1 - 4, 8, 8);
g.DrawEllipse(p enMi, x1 - 5, y1 - 5, 10, 10);
}
Comment