Click here to Skip to main content
15,885,980 members
Articles / Desktop Programming / MFC

Barry's Screen Capture

Rate me:
Please Sign up or sign in to vote.
3.74/5 (26 votes)
11 Jan 20034 min read 271.6K   14.4K   96  
An article showing methods of screen capture
void ShowAboutBox(CString sTitle, UINT nIconID)
{
	CString sDeveloper;
	sDeveloper = "Developer : Barretto VN \nE-Mail : barretto_vn@mail.com";

	if(nIconID == NULL)
		ShellAbout(NULL, sTitle, sDeveloper, NULL);
	else
	{
		CWinApp* pApp= AfxGetApp();
		ShellAbout(NULL, sTitle , sDeveloper , pApp->LoadIcon(nIconID));
	}
	return;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
India India
Nothing to boast about

Comments and Discussions