I am going back over old code and instead of DDT style I am creating my windows SDK style but I have run into an odd problem that I just can not seem to solve.
If I create an "Edit" window via
then my window appears, but then I found what I think is the callback is going to whatever callback the "Edit" class was registered with???
So I tried to subclass to redirect the callback to my proc, but when I do the window disappears.
Any ideas what message I am not handling that obviously the "Edit" callback is handling?????
If I create an "Edit" window via
Code:
hEdit = CreateWindowEx(WindowStyleEx, "Edit", BYCOPY szWindowName, WindowStyle, x, y, cx, cy, HwndDlgJog, %TxtVelocity, hInst, BYVAL %NULL)
So I tried to subclass to redirect the callback to my proc, but when I do the window disappears.
Any ideas what message I am not handling that obviously the "Edit" callback is handling?????
Comment