Does anyone know a quick easy way to restore a control to the way it was before you used DrawEdge?
i.e.
That Bevels the outside edge of a UserControlCode:Dim lRetVal As Long lRetVal = DrawEdge(UserControl.hDC, _ MRect,BDR_RAISEDOUTER, _ BF_RECT Or BF_SOFT)
That Sinks it for a click event.Code:Dim lRetVal As Long lRetVal = DrawEdge(UserControl.hDC, _ MRect,BDR_SUNKENOUTER, _ BF_RECT Or BF_SOFT)
What I want to know is does anyone know of a way to make it flat agian?
Thanks




Reply With Quote