Hi, I just need some help here.. I want to align the text output in Pole Customer Display like
Shoes...........£20.00
Total...........£20.00
but the of total is not displaying the amount and the euro symbol is display "?"
Can you help me guys? Thanx a lot in advance
Below is my code for pole display
Dim sp = New SerialPort("COM4", 9600, Parity.None, 8, StopBits.One)
sp.Open()
' to clear the display
sp.Write(Convert.ToString(Chr(12)))
'first line goes here
sp.WriteLine(Label1.Text + " " + ChrW(8364) + Label3.Text + Chr(13))
'2nd line goes here
sp.WriteLine(Label2.Text + " " + ChrW(8364) + Label4.Text)
sp.Dispose()
sp.Close()