Is there any way to access chr characters above 127? I would like to send a perfect box object to the printer instead of using horizontal dashes and vertical characters available in chr 1-127.
You can use the CodePage object from the BytesConverter library.
With: CodePage.FileOpen(DataFileName,cWrite,437) CodePage.FileWrite("Text") CodePage.FileWrite(Chr(150)&Chr(151)) You should use the CodePAge 437 Code page 437 - Wikipedia, the free encyclopedia
After further review I have found the corner and line displays available in the chr(9400) to chr(9600) range without using 437 gymnastics. This may help someone else who is trying to display or print boxes.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.