for example to print through LPT1, i can use
<code>FILE*prin ter;
printer=fopen(" LPT1","wb+");
fprintf(printer ,"This is message");
</code>
but i want to send it to:USB001
is there a way without going to windows or MFC?
<code>FILE*prin ter;
printer=fopen(" LPT1","wb+");
fprintf(printer ,"This is message");
</code>
but i want to send it to:USB001
is there a way without going to windows or MFC?
Comment