why don't you just try Polyline?
it will draw an outline of any shape you give the coordinates.
you just have to set the last point equal to the first one.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is there a way to draw a rectangle so that only the lines are drawn, not the inside?
I mean other than drawing with a white brush onto a seperate DC and then bitblting.
Set the brush to a NULL brush. Try this:
SelectObject(dc, GetStockObject(HOLLOW_BRUSH));
Paul
why don't you just try Polyline?
it will draw an outline of any shape you give the coordinates.
you just have to set the last point equal to the first one.