result file in HTML format
-
Hi, I have an application written in MFC.After some calculation i have to show the results in html file.how to generate a HTML through program.
-
Hi, I have an application written in MFC.After some calculation i have to show the results in html file.how to generate a HTML through program.
Are you familiar with the html tags. If affirmative, you can use the tags and write them to the file alongwith the result. The html file can be opened in HTML view.
I am a HUMAN. I have that keyword in my name........ ;-)_AnsHUMAN_
-
Hi, I have an application written in MFC.After some calculation i have to show the results in html file.how to generate a HTML through program.
-
Hi, I have an application written in MFC.After some calculation i have to show the results in html file.how to generate a HTML through program.
Writing a HTML file just means that you have added HTML tags to a file containing text. Here is an example that will help get you started: XHtmlLog - Convert text log files to HTML[^]
Best wishes, Hans
-
Hi, I have an application written in MFC.After some calculation i have to show the results in html file.how to generate a HTML through program.
FILE *fp = fopen(filename, "w");
fprintf(fp, "\n\n");
fprintf(fp, all your data goes here);
fprintf(fp, "<\body>\n");
fclose(fp);