I need to draw a horizontal line (solid one but dashed will be perfect!) to my receipt using ESC/POS commands.
Now I'm using some hack that allow me to draw a horizontal line by using "UnderLine" command with some space characters, but i don't like it because i need to give the line some drawing properties like a "Height":
PRINT #1, CHR$(&H1B);"-";CHR$(1); <==== set underline on
PRINT #1, " "; CHR$(&HA);
PRINT #1, CHR$(&H1B);"-";CHR$(0); <==== set underline off
I believe it can be happen with bit image commands but i have no idea how to do that.
Thanks in advance