If I create a Pen with

hpenl = CreatePen(PS_SOLID, 0, color1);

and select that pen and then

hpenl = CreatePen(PS_SOLID, 0, color2);

and select that pen,

Can I delete a single pen or will there be a second undeleted pen out in never-never land?

Brian