Click here to Skip to main content
16,010,544 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Convert Dialog based MFC to Activex Pin
Member 341925310-Apr-08 1:45
Member 341925310-Apr-08 1:45 
GeneralRe: Convert Dialog based MFC to Activex Pin
Member 341925314-Apr-08 19:09
Member 341925314-Apr-08 19:09 
GeneralMerging of files Pin
Chandrasekharan P10-Apr-08 0:14
Chandrasekharan P10-Apr-08 0:14 
GeneralRe: Merging of files Pin
_AnsHUMAN_ 10-Apr-08 0:22
_AnsHUMAN_ 10-Apr-08 0:22 
GeneralRe: Merging of files Pin
Chandrasekharan P10-Apr-08 1:16
Chandrasekharan P10-Apr-08 1:16 
GeneralRe: Merging of files Pin
Cedric Moonen10-Apr-08 1:51
Cedric Moonen10-Apr-08 1:51 
GeneralRe: Merging of files Pin
Chandrasekharan P13-Apr-08 19:34
Chandrasekharan P13-Apr-08 19:34 
GeneralRe: Merging of files Pin
chandu00410-Apr-08 0:31
chandu00410-Apr-08 0:31 
will this work for you?<br />
FILE *fp1,*fp2;<br />
fp1=fopen(mergedfile,"wb");<br />
//writing file1<br />
fp2=fopen(file1,"rb");<br />
while(1)<br />
{<br />
   fread(&data,1,1,fp2);<br />
   if(feof(fp2))<br />
      break;<br />
   fwrite(&data,1,1,fp1);<br />
}<br />
fclose(fp2);<br />
//writing file2<br />
fp2=fopen(file2,"rb");<br />
while(1)<br />
{<br />
   fread(&data,1,1,fp2);<br />
   if(feof(fp2))<br />
      break;<br />
   fwrite(&data,1,1,fp1);<br />
}<br />
fclose(fp2);<br />
fclose(fp1);


--------------------------------------------
Suggestion to the members:
Please prefix your main thread subject with [SOLVED] if it is solved.
thanks.
chandu.

QuestionHow to connect the Microsoft Access database in the VC++ program? Pin
savitri9-Apr-08 23:44
savitri9-Apr-08 23:44 
GeneralRe: How to connect the Microsoft Access database in the VC++ program? Pin
sujeet_kulk9-Apr-08 23:49
sujeet_kulk9-Apr-08 23:49 
GeneralRe: How to connect the Microsoft Access database in the VC++ program? Pin
dhananjay giri9-Apr-08 23:57
dhananjay giri9-Apr-08 23:57 
GeneralRe: How to connect the Microsoft Access database in the VC++ program? Pin
dhananjay giri10-Apr-08 0:17
dhananjay giri10-Apr-08 0:17 
GeneralRe: How to connect the Microsoft Access database in the VC++ program? Pin
David Crow10-Apr-08 3:53
David Crow10-Apr-08 3:53 
GeneralRe: How to connect the Microsoft Access database in the VC++ program? Pin
Antonio292910-Apr-08 6:19
Antonio292910-Apr-08 6:19 
GeneralRe: How to connect the Microsoft Access database in the VC++ program? Pin
Hamid_RT11-Apr-08 7:11
Hamid_RT11-Apr-08 7:11 
GeneralAbout modeless dialog box plz help Pin
girishchi@gmail.com9-Apr-08 23:43
girishchi@gmail.com9-Apr-08 23:43 
GeneralRe: About modeless dialog box plz help Pin
Iain Clarke, Warrior Programmer9-Apr-08 23:51
Iain Clarke, Warrior Programmer9-Apr-08 23:51 
GeneralRe: About modeless dialog box plz help Pin
girishchi@gmail.com10-Apr-08 0:04
girishchi@gmail.com10-Apr-08 0:04 
GeneralRe: About modeless dialog box plz help Pin
Nitheesh George10-Apr-08 1:11
Nitheesh George10-Apr-08 1:11 
GeneralRe: About modeless dialog box plz help Pin
girishchi@gmail.com10-Apr-08 1:34
girishchi@gmail.com10-Apr-08 1:34 
GeneralRe: About modeless dialog box plz help Pin
David Crow10-Apr-08 4:01
David Crow10-Apr-08 4:01 
GeneralRe: About modeless dialog box plz help Pin
girishchi@gmail.com10-Apr-08 4:55
girishchi@gmail.com10-Apr-08 4:55 
Questioninserting data into excel sheet in vc++ and ODBC without MFC and COM Component Pin
dhananjay giri9-Apr-08 23:37
dhananjay giri9-Apr-08 23:37 
GeneralRe: inserting data into excel sheet in vc++ and ODBC without MFC and COM Component Pin
chandu0049-Apr-08 23:57
chandu0049-Apr-08 23:57 
GeneralRe: inserting data into excel sheet in vc++ and ODBC without MFC and COM Component Pin
Cedric Moonen10-Apr-08 0:37
Cedric Moonen10-Apr-08 0:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.