Click here to Skip to main content
15,888,221 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi
I have issue in sending barcode to Argox barcode printer using asp.net

Below code is working in VB 6 and print direct to barcode printer.
Now I need to convert into asp.net. I do not know how to do.

VB
CR$ = Chr$(13)
Print #1, Chr$(2) & "L" & CR$
Print #1, "h13" & CR$
Print #1, "D11" & CR$
Print #1, "4e9102600090170C" & "123456789"  & CR$          'barcode
Print #1, "401100000090182" & "123456789"  & CR$           'human readable
Print #1, "401100000090199" & "PEPSI"   & CR$              'Description
Print #1, "E" & CR$


Pls help me

Thank you
Maideen
Posted
Comments
F-ES Sitecore 16-Oct-15 10:23am    
Is the printer attached to the web server? Or the client machine?
Maideen Abdul Kader 16-Oct-15 10:27am    
thanks
attached in client PC. Is it possible to develop C# desktop for barcode printing?
If so, how can i convert the above code into C#? Pls Help me
ZurdoDev 16-Oct-15 10:44am    
ASP.Net code runs on your server so it won't print out on the client machine. I suggest finding a simple plugin that generates the image and then let the user print it out on their own.
Maideen Abdul Kader 16-Oct-15 23:56pm    
Thanks Ryan
I am in middle in developing code in vb.net (desktop application) only for Barcode Printer as per your suggestion.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900