Click here to Skip to main content
15,892,674 members
Articles / Desktop Programming / MFC

Enumdesk Clones

Rate me:
Please Sign up or sign in to vote.
4.90/5 (19 votes)
9 May 20036 min read 139.6K   3.9K   41  
Eunumdesk Clones
void ShowAboutBox(CString sTitle, UINT nIconID)
{
	CString sDeveloper;
	sDeveloper = "Developer : Barretto VN \nE-Mail : vnb400@hotmail.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.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
India India
Nothing to boast about

Comments and Discussions