Serial Port and USB device

  • Thread starter Thread starter cmdolcet69
  • Start date Start date
C

cmdolcet69

Im trying to communicate to a DYMO Printer I set my serial port
correctly however when I go into the device manager the DYMO isnt;
listed in the Serial COM Ports? If I go into the printer console I see
the DYMO printer listed as a USB001 Virtual Printer Port For USB. How
do i set this up in my code so that the executed code can talk and
print to the DYMO.
 
Try dropping a PrintDialog on your form, call it, and see what it returns as
the path to your printer.

Save this path to use in your code, then delete the PrintDialog control.
 
Hi,

This printer, almost certainly, is does not use a Virtual Serial port, but
(rather) a Virtual Parallel port. Thus, you would print to it like any
other printer.

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
See www.hardandsoftware.net for details and contact information.
 
Hi,

This printer, almost certainly, is does not use a Virtual Serial port, but
(rather) a Virtual Parallel port.  Thus, you would print to it like any
other printer.

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
Seewww.hardandsoftware.netfor details and contact information.

But how do i know what COM port it using? nothing is listed under the
device manager
 
Back
Top