Question : Can not print £ sign on zebra 2844 printer

Hi experts
using vb.net 2005 i m trying to print on zebra 2844 printer using USB interface every thing prints fine but the £ (pound sign) when I send data for that it prints this character “ ü “ , using the code below this is midnight and in the morning I have to install this programme on client side
Hope I will get some help here

Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
Private Sub Test_Print()
        Dim pound_sign As String
        Dim Company_name As String

        Company_name = "Test Company"
        Dim print As New Waterfurnace.ZebraPrint
        print.StartWrite("\\pc-1\\ZebraLP2") ' this is printer sharing name

        print.Write("")
        print.Write("N")
    print.Write("A500,200,2,4,1,1,N,""" & Style_Desc & """")
    print.Write("A500,175,2,4,1,1,N,""£99.99""")
    print.Write("A500,150,2,4,1,1,N,""" & Price & """")
    print.Write("B500,100,2,1,2,1,40,N,""" & Bcode & """")
    print.Write("A500,58,2,3,1,1,N,""" & Bcode & """")
      'Print a single copy
        print.Write("P1")
        'Clean up
       print.EndWrite()
    End Sub

Answer : Can not print £ sign on zebra 2844 printer

Try changing this
print.Write("A500,175,2,4,1,1,N,""£99.99""")

to
print.Write("A500,175,2,4,1,1,N," & chr(34) & chr(156) & "99.99" & chr(34) & ")
Random Solutions  
 
programming4us programming4us