CDataExchange member m_hWndLastControl not present in .NET

  • Thread starter Thread starter ndessai
  • Start date Start date
N

ndessai

Hi,

CdataExchange member m_hWndLastControl is not present in new VC .NET
compiler.

I got suggestions to replace this with newly added member
<http://support.microsoft.com/defaul...port/kb/articles/q149/5/58.asp&NoWebContent=1>
it has asked to do following code changes

pDX->m_hWndLastControl =
theControl->m_hWnd; to pDX->m_idLastControl =
(UINT)theControl->m_hWnd;)


Even with this change my code does not seem to work.
The earlier compiled version of this code worked perfectly fine and the
new changes only include above mentioned changes.

The exact place where it fails is th SendMessage Function.

Please let me know if anybody has encountered this issue earlier or if
anyone has solved this one.

Thanks and regards,
Ndessai
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top