I have my window subclassed and was hoping that instead of completely overriding every message that I handle, it would carry out whatever is in the subclassed window as well, like C# does in the OnPaint event.

In C# I have a choice whether to completely override it or not and when it is carried out using
base.OnPaint(e);

I hope you know what I mean. How would I do this?