Resource add in compile time in MFC

Light Poster
31Jan2007,11:40   #1
Akash's Avatar
First Import a .txt file in MFC
and then give some name such as "A"
So its adding as IDR_A1

Then find IDR_A1, U will see #define IDR_A1 129 or different

Then write the code which is given billow in OnInitDialog()

HGLOBAL hResourceLoaded; // handle to loaded resource
HRSRC hRes; // handle/ptr to res. info.
char *lpResLock; // pointer to resource data
DWORD dwSizeRes;
int nResourceId;
unsigned char vv[50000];

ofstream outputFile;


hRes = FindResource(NULL, MAKEINTRESOURCE(129),"A");


hResourceLoaded = LoadResource(NULL, hRes);
lpResLock = (char *) LockResource(hResourceLoaded);
dwSizeRes = SizeofResource(NULL, hRes);
strcpy(vv,lpResLock);
//*vv=*lpResLock;
outputFile.open("C:\\B.txt",1);
outputFile.write((const char *) lpResLock, dwSizeRes);
outputFile.close();

//adding #include <fstream.h>
Go4Expert Founder
31Jan2007,13:56   #2
shabbir's Avatar
Sorry I could not get what is your point??
Light Poster
31Jan2007,14:15   #3
Akash's Avatar
basically it work as a installer . First U have to attach so many file ,
such as txt,binary in compile time.
When its run then will not depend to any other file for writing anywhere.
Till now if u r not understand then batter to discus Hansaraj Das
Akash Dutta
Cellnext Solutions Limited.(DELHI)
akashduttaj@gmail.com
akash.dutta@cellnext.com
Ph:09313773387(M),03325141429(R)
Go4Expert Founder
31Jan2007,15:21   #4
shabbir's Avatar
What I wanted to know is whats your query then.
Light Poster
1Feb2007,09:26   #5
Akash's Avatar
dont understand your question.
Go4Expert Founder
1Feb2007,10:16   #6
shabbir's Avatar
This is a query and discussion forum and it looks like you are looking for something. isnt that true?
Light Poster
1Feb2007,10:28   #7
Akash's Avatar
100% true
Go4Expert Founder
1Feb2007,13:35   #8
shabbir's Avatar
Quote:
Originally Posted by Akash
100% true
Then if you are looking for something then whats your question??
Light Poster
2Feb2007,15:26   #9
Akash's Avatar
actually right now I am working in win32 console application with dialogic
also know some portion of MFC.
want to know win32 application.

so plz send me a simple programe of win32 application,
which will create a button and when fire this then it will
show a message box..........thats all

thank U.
Go4Expert Founder
2Feb2007,15:45   #10
shabbir's Avatar
Have you tried writing something??