Hi, I have a bluetooth connection with a printer. Then I start and Activity to get the data I want to print.
After I concatenate all the data in a String Var I made the following:
The question is, Why the printer do not print all the data? It stops at the middle :BangHead:
After I concatenate all the data in a String Var I made the following:
B4X:
Dim impresora As TextWriter
impresora.Initialize(Main.sManager.OutputStream)
impresora.WriteLine(pagina)
impresora.Flush
impresora.Close
Activity.Finish
StartActivity(Main)
The question is, Why the printer do not print all the data? It stops at the middle :BangHead:
Last edited: