Me referia a Visual C++, Pero vale.
Aqui tienes el ejemplo de input con streams
http://ei.cs.vt.edu/~cs1344/Notes/Class3.pdf
Aqui los tienes de ejemplo explicado :
http://www.technipal.com/cpp/iostream.htmlSi lo que quieres es un manual de Visual C++ entonces lo puedes conseguir de aquí, de hecho te ponen un poco al di del funcionamiento de los GUIs
http://www.engin.umd.umich.edu/CIS/course.des/cis400/vcpp/vcpp.htmlSi juegas con TextBox (o EditText de Visual C++) lo que debes usar es algo de este estilo :
void CTesteoDlg::OnChangeEdit1()
{
// TODO: If this is a RICHEDIT control, the control will not
// send this notification unless you override the CDialog::OnInitDialog()
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
CString Str;
GetDlgItemText(IDC_EDIT1,Str );
AfxMessageBox ((LPCTSTR)(Str));
}
Preguntar por el último carácter obtenido y compararlo con el CHR13
No se si es lo que me preguntas.