Click here to Skip to main content
15,897,891 members
Articles / Desktop Programming / MFC

Hiding a text file in a bmp file

Rate me:
Please Sign up or sign in to vote.
4.72/5 (348 votes)
26 Nov 20033 min read 496.3K   22.8K   206  
How to hide a text file in a bmp file
// ResulrDlg.cpp : implementation file
//

#include "stdafx.h"
#include "StGraph.h"
#include "ResulrDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// ResulrDlg dialog


ResulrDlg::ResulrDlg(CWnd* pParent /*=NULL*/)
	: CDialog(ResulrDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(ResulrDlg)
	m_result = _T("");
	//}}AFX_DATA_INIT
}


void ResulrDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(ResulrDlg)

	DDX_Text(pDX, IDC_EDIT1, m_result);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(ResulrDlg, CDialog)
	//{{AFX_MSG_MAP(ResulrDlg)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// ResulrDlg message handlers

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
Systems Engineer
Egypt Egypt
My Name Ahmed Osama.
Communication & Electronic engineering
I like so much programming using c\c++ , MFC and VC++
i like programming in many fields like "digital signal processor" and math and image processing

Comments and Discussions