I have made a DLL with creates a modeless dialog, I have to call it from a program made with LabView, but I think the matter is with any kind of "parent program". The matter is, when I create the modeless dialog, I think I have to create de modeless window with:
m_nonmodal->Create(CMyDlg::IDD,AfxGetMainWnd());
And I put to a edit control, to see if it gets something, with:
m_nonmodal->m_texto=(LPTSTR)AfxGetMainWnd();
But, how can I do to exchange data between the modeless and the parent?
m_nonmodal->Create(CMyDlg::IDD,AfxGetMainWnd());
And I put to a edit control, to see if it gets something, with:
m_nonmodal->m_texto=(LPTSTR)AfxGetMainWnd();
But, how can I do to exchange data between the modeless and the parent?