K
kizmet
Ok - so I'm going through my teach yourself VC++ in 21 days book
second time around for revision). I've got to day 2 (groan).
The book says to put the following code in....
void CDay2Dlg::OnExit()
{
// TODO: Add your control notification handler code here
OnOK();
}
But I can only get the function to work if I write it as:
void CDay2Dlg::OnExit()
{
// TODO: Add your control notification handler code here
CDay2Dlg::OnOK();
}
Last time I did this it worked fine without the CDay2Dlg::
Any ideas? Thanks...
second time around for revision). I've got to day 2 (groan).
The book says to put the following code in....
void CDay2Dlg::OnExit()
{
// TODO: Add your control notification handler code here
OnOK();
}
But I can only get the function to work if I write it as:
void CDay2Dlg::OnExit()
{
// TODO: Add your control notification handler code here
CDay2Dlg::OnOK();
}
Last time I did this it worked fine without the CDay2Dlg::
Any ideas? Thanks...