This commit is contained in:
atvstdla
2025-09-25 08:23:36 +09:00
parent ee122a6daf
commit a34dbecfb9
10 changed files with 1574 additions and 1584 deletions

View File

@@ -100,9 +100,11 @@ namespace Project.Dialog
var cnt = (int)nudCnt.Value;
for (int i = 0; i < cnt; i++)
{
if (Printer.Print(zpl) == false)
var prn = Printer.Print(zpl);
if (prn.result == false)
{
//인쇄실패시 처리하지 않음
PUB.log.AddE(prn.errmessage);
UTIL.MsgE("Cannot proceed further due to printing failure");
break;
}