R RonkyOne Member Licensed User Longtime User Feb 20, 2019 #1 hi to everybody, there some one that can translate this code: Dim sendBytes As Byte() = {&H1D, &HF6} thanks in advance
hi to everybody, there some one that can translate this code: Dim sendBytes As Byte() = {&H1D, &HF6} thanks in advance
R RonkyOne Member Licensed User Longtime User Feb 20, 2019 #2 i must send to printer AstreamT.Write(Array As Byte("&H1D", "&HF6")) Upvote 0
Star-Dust Expert Licensed User Longtime User Feb 20, 2019 #3 B4X: Dim sendBytes() As Byte = (0x1D, 0xF6) AstreamT.Write(Array As Byte(0x1D, 0xF6)) Upvote 0
MarkusR Well-Known Member Licensed User Longtime User Feb 20, 2019 #4 in b4a,b4a it is a signed byte Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 20, 2019 #5 MarkusR said: in b4a,b4a it is a signed byte Click to expand... It doesn't matter unless you are using the values for calculations. Upvote 0
MarkusR said: in b4a,b4a it is a signed byte Click to expand... It doesn't matter unless you are using the values for calculations.