I have a rectangular region;
RECT rc{474,0,674,185};
//or
HRGN hrgn=CreateRectRgn(474,0,674,185);
I want to move (like cut and paste) the contents (all the controls) of this region to some rectangle with coordinates {0,0,200,185}
so how do I do that?
P.S: I'm overwriting this question onto another, please answer it.