I print text with a bluetooth printer (MZ220), but I have a problem when the string I want to print is longer than the width of the paper; the result is that the string ("address" in this example) is printed above the prevoius, and not with a carriage return. How can I do? Thanks..
I already tried with chr(13) & chr(10) but the problem is not solved, it adds chr(13) & chr(10) at the end of string, instead of add an "auto-carriage return" when the length of the string exceeds the width of print area. There is no solution?