Printing Dymo

If any one Have Print on Dymo Label Writer 400

i need to print bar code in text vertical

Make a 300 dpi image and print that. You’ll be much happier with the result.

with the picture box on the Reports but how i write to the Picture box as graphics vertical

Use a StringShape.

http://documentation.xojo.com/index.php/StringShape

Hi, i just finished some tests with my dymo labelmanager (or something like that) here the code:


dim g as graphics
g=OpenPrinter()
   
  Dim s as New StringShape
  
  s.TextSize=35
  s.Text="                                                        line1      line2      line3 "
  s.TextFont="Tahoma"
  s.Bold=True
  s.Rotation=3.14/2
  g.DrawObject s,-1,-35

I did get a bad result… but better than nothing. Just wanna let you know. You have to decide to spend some labels.
Good luck.

thanks