Thursday, November 11, 2010

How to write code for VB to communicate with paraport printer?

I am writing a VB program which need to print out label in a paraport printer. How to code this function?How to write code for VB to communicate with paraport printer?
Did the paraport printer come with an API/SDK for integrating into customized applications?



Other then that, all I can think of is the Printer Object.



Try something like :



Set your default printer to what you want, then insert the following code into a command button :



Printer.Print ';Test line 1';

Printer.Print ';Test line 2';

Printer.EndDoc



See what happens.

No comments:

Post a Comment