Click here to Skip to main content
15,887,027 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Syncing a single VSS database across several machines Pin
David Crow28-Feb-05 4:14
David Crow28-Feb-05 4:14 
GeneralRe: Syncing a single VSS database across several machines Pin
Gary Chapman28-Feb-05 12:09
Gary Chapman28-Feb-05 12:09 
Generalmodem phone number Pin
jonavon blakly27-Feb-05 14:26
jonavon blakly27-Feb-05 14:26 
GeneralRe: modem phone number Pin
PJ Arends27-Feb-05 22:12
professionalPJ Arends27-Feb-05 22:12 
QuestionHow to print to printer Pin
Yulianto.27-Feb-05 13:49
Yulianto.27-Feb-05 13:49 
AnswerRe: How to print to printer Pin
Christian Graus27-Feb-05 14:50
protectorChristian Graus27-Feb-05 14:50 
GeneralRe: How to print to printer Pin
Yulianto.27-Feb-05 16:07
Yulianto.27-Feb-05 16:07 
AnswerRe: How to print to printer Pin
PJ Arends27-Feb-05 18:46
professionalPJ Arends27-Feb-05 18:46 
You can open a file handle to the printer using "LPT1" as the file name in the fopen function.
FILE *pPrinter = fopen(_T("LPT1"), _T("w"));
if (pPrinter)
{
   fprintf(pPrinter, _T("Hello World"));
}




"You're obviously a superstar." - Christian Graus about me - 12 Feb '03

"Obviously ??? You're definitely a superstar!!!" mYkel - 21 Jun '04

Within you lies the power for good - Use it!
Honoured as one of The Most Helpful Members of 2004

GeneralRe: How to print to printer Pin
Yulianto.27-Feb-05 22:33
Yulianto.27-Feb-05 22:33 
Generalxml translation function in C++ Pin
RutaK27-Feb-05 9:57
RutaK27-Feb-05 9:57 
GeneralRe: xml translation function in C++ Pin
Ravi Bhavnani27-Feb-05 10:42
professionalRavi Bhavnani27-Feb-05 10:42 
GeneralRe: xml translation function in C++ Pin
RutaK27-Feb-05 10:47
RutaK27-Feb-05 10:47 
GeneralRe: xml translation function in C++ Pin
Ravi Bhavnani27-Feb-05 10:57
professionalRavi Bhavnani27-Feb-05 10:57 
GeneralRe: xml translation function in C++ Pin
RutaK27-Feb-05 11:01
RutaK27-Feb-05 11:01 
GeneralDefining a new C++ library Pin
Anonymous27-Feb-05 9:26
Anonymous27-Feb-05 9:26 
GeneralMozilla Firefox Pin
stifmeister_ro27-Feb-05 9:24
stifmeister_ro27-Feb-05 9:24 
GeneralRe: Mozilla Firefox Pin
szcococut19-Jun-05 21:59
szcococut19-Jun-05 21:59 
GeneralListing files in a folder Pin
Tommy2d27-Feb-05 9:23
Tommy2d27-Feb-05 9:23 
GeneralRe: Listing files in a folder Pin
Ravi Bhavnani27-Feb-05 9:28
professionalRavi Bhavnani27-Feb-05 9:28 
GeneralRe: Listing files in a folder Pin
User 665827-Feb-05 9:41
User 665827-Feb-05 9:41 
GeneralDefining a new library in VC++ Pin
Anonymous27-Feb-05 9:21
Anonymous27-Feb-05 9:21 
GeneralRedirecting an ostream to a message box Pin
JS_H27-Feb-05 8:31
JS_H27-Feb-05 8:31 
GeneralRe: Redirecting an ostream to a message box Pin
Aamir Butt27-Feb-05 19:58
Aamir Butt27-Feb-05 19:58 
GeneralWhy cannot get filename by handle directly Pin
sprewellkobe27-Feb-05 7:37
sprewellkobe27-Feb-05 7:37 
GeneralRe: Why cannot get filename by handle directly Pin
Ravi Bhavnani27-Feb-05 10:47
professionalRavi Bhavnani27-Feb-05 10:47 

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.