Does anyone know a quick easy way to restore a control to the way it was before you used DrawEdge?
i.e.
Code:
    Dim lRetVal As Long
    lRetVal = DrawEdge(UserControl.hDC, _ 
                       MRect,BDR_RAISEDOUTER, _
                       BF_RECT Or BF_SOFT)
That Bevels the outside edge of a UserControl

Code:
    Dim lRetVal As Long
    lRetVal = DrawEdge(UserControl.hDC, _ 
                       MRect,BDR_SUNKENOUTER, _
                       BF_RECT Or BF_SOFT)
That Sinks it for a click event.

What I want to know is does anyone know of a way to make it flat agian?

Thanks