I am a novice C # programmer. I have a project that requires me to send an unprocessed command to the Zebra LP 2844 printer via USB and make it work. I did a lot of research and tried to figure out how to do this. I am using the code http://support.microsoft.com/kb/322091 , but this did not work. Based on my test, it seems that I sent commands to the printer, but it did not respond and did not print. I have no idea about this. Can someone help me?
I use the button to send the command directly
private void button2_Click(object sender, EventArgs e) { string s = "A50,50,0,2,1,1,N,\"9129302\"";
source share