其实直接写端口很简单。你到Epson的主页上下载一本控制代码说明书,一切搞定。如果你的
打印机是并口的话(TM88III有并口和串口的,不知你的是哪种),根本不用在乎速度了。
var
f:textfile;
begin
AssignFile(F, 'LPT1');
Rewrite(F);
write(f,#27+'!'+#8);
write(f,#10);
write(f,'E14E-F726-85C2-03130-91 61018888'+#27+#74+#78);
write(f,inttostr(qihao)+' '+inttostr(dd)+'/单式 C733 '+#157+inttostr((row1-1)*2)+#27+#74+#78);
WRITE(F,#27+'!'+#1);
write(f,#29+'!'+#16);
...
...
CloseFile(F);
end;