1
有沒有人知道如何使用DirectIO而不是PrintNormal爲以下JavaScript?如何使用DirectIO而不是PrintNormal打印到Zebra打印機?
printer.Open("zebraprinter");
printer.ClaimDevice(1000);
printer.DeviceEnabled = true;
printer.PrintNormal(2, "^XA");
printer.PrintNormal(2, "^LH0,0");
printer.PrintNormal(2, "^FO100,100^ASI^FDTest^FS");
printer.PrintNormal(2, "^XZ");
printer.MarkFeed(3);
printer.DeviceEnabled = false;
printer.ReleaseDevice();
printer.Close();
只是好奇,但PrintNormal是什麼?這是一個ActiveX控件嗎?如果是的話,你在哪裏可以得到它? – 2011-06-28 22:32:44