So und nun genauer , ICh denke du willst sagen das du hast
CEditView thisView ;
willst du auf den Text darin zugreifen
da sagt die MSNDN dazu
Call GetEditCtrl to get a reference to the edit control used by the edit view.
> Rufe GetEditCtrl um eine Refernez auf das Edit Kontrol welches vom :EditView benutzt wird
CEdit& GetEditCtrl( ) const;
Return Value
A reference to a CEdit object.
> Rückgabewert ist
> eine Referenz object vom typ CEdit
daraus folgt dann wohl
Example
CMyEditView::open\_mouth:nInitialUpdate()
{
// get the edit control and set some initial properties for it
CEdit& theEdit = GetEditCtrl();
somit suche man bei CEdit die Message
Each message-map entry takes the following form:
ON\_Notification( id, memberFxn )
The parent's function prototype is as follows:
afx\_msg void memberFxn( );
ON\_EN\_CHANGE
The user has taken an action that may have altered text in an edit control. Unlike the EN\_UPDATE notification message, this notification message is sent after Windows updates the display.
Die braucst du also z.b. wenn was neues geschriben wurde oder so…
dann die Member von CEdit
GetLine()
Retrieves a line of text from an edit control.
also
CString myLine;
myLine = theEdit.GetLine();
[Bei dieser Antwort wurde das Vollzitat nachträglich automatisiert entfernt]