Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Languages / C++ Libraries / November 2004

Tip: Looking for answers? Try searching our database.

How to print a txt file into a printer?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Mark - 10 Nov 2004 09:55 GMT
i can print a string into a printer,for example

FILE *pFile = fopen("LPT1", "w");
fprintf(pFile, "i like c++");
fclose(pFile);

But now i want to print a txt file into a printer, what should i do?
thanks!!!!!
LhK-Soft - 11 Nov 2004 09:28 GMT
Hi,

> i can print a string into a printer,for example
>
[quoted text clipped - 3 lines]
>
> But now i want to print a txt file into a printer, what should i do?

It's easy, but requires some more development. Look into the example source
below:

FILE* prnOut = fopen("LPT1", "wt"); // using as 'text'
FILE* txtIn = fopen("MyTextfile.txt", "rt"); // using cr-lf translation
// do some testing here that both files realy are opened:
if ((!prnOut) || (ferror(prnOut)) || (!txtIn) || (ferror(txtIn)))
{
 if (prnOut) fclose(prnOut);
 if (txtIn) fclose(txtIn);
 return;  
}
int hasread;
char buf[2048]; // 2KB bufsize
while ((!ferror(prnOut)) && (!ferror(txtIn)) && (!feof(txtIn)))
{
 hasread=fread(buf, sizeof(char), 2048, txtIn);
 if (fwrite(buf, sizeof(char), hasread, prnOut) != hasread)
   break; // properly an error occured...
}
//...

Good luck!

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.