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>
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)
This is a query and discussion forum and it looks like you are looking for something. isnt that true?
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.
But wehre have you stuck. Have you tried anything which we can help you upon. We cannot write everything for you unless you write your own code. Try reading [thread=168]Before you make a query[/thread].