I would like to know how I can approach my controls in Dialogbar?
I made an dialogbar in mainframe and added some NI Controls and normal controls (ex, CEdit). I can handle normal controls without problem, but if I try to handle NI Controls it gives runtime errors.
Does it happens since Ni Controls are ActiveX controls? In that case, how can I handle them?
I tried like follows:
CNiNumEdit *numEdit;
numEdit = (CNiNumEdit*)m_wndDialogBar.GetDlgItem(IDC_CWNETL);
numEdit->Value = 10;