Hi
I inserted an edit box in a Dialog, using the Ressource editor. The user can write some text in the edit box and I want to access the content.
From within my Dialog CPP file (say Dialog.cpp) I wrote the following to access each line of the edit box:
for()
{
...
GetDlgItem(IDC_MY_EDITBOX)->GetLine();
...
}
When I compile, I get an error saying that GetLine is not a member of CWnd. How come my edit box is not a CEdit object?
Thanks