Hi,
How can I show a long value returned from a function to a textbox on a dialog box.
Void CVideoDlg::OnBnClickedFrames()
{
m_AMC.get_FramesDrawn(); // retunrs long
}
I want to display the returned value in textbox as well as a messagebox.
I tried MessageBox(CString(m_AMC.get_FramesDrawn()));
But it didn't work out
anyone can help with that
thx