Hi,
I have a edit control in win32 and another class in mfc.
In mfc i can use the following to attach the vaiable to control
DDX_Control(pDX, IDC_EDIT_CONTROL, Variale);//Variable is object of mfc class
Now i want to do the same for my win32 edit control, means attach the variable(mfc class object) to my edit control using win32.
Thanks
If you use the same messages as an Edit control, you can use the same macro. If not, you'll need a macro that understands your message interface.