I have rewritten (or mostly just moved code) to be a custom control derived from "Component".
All is basicly done and I am now facing the WndProc issue in Components.
Since WndProc is window/form messages and Components is formless it doesnt receive those message. And therefor WndProc wont work.
Is there a way to receive those messages in a component so I wont need to manually add the WndProc override to the form the control is added to?
I have been looking a little into NativeWindow but it doesnt seem to work or maybe I am just not doing it correctly.