SytzedeBoer
Programmer
Client has a small app to capture client purchase orders
This capture can happen in a large building with multiple pc's and phones.
When he/she captures the order, the order is printed on a specific choice of printer
So my system goes
trcask122=''
trcask123=''
trcask124=1
mypr=APRINTERS(gaPrn)
FOR i=1 TO mypr
trcask122=trcask122+gaprn(i,1)+","
ENDFOR
do form windpslp && Combo, to choose the printer and number of copies
IF !EMPTY(trcask123)
SET PRINTER TO NAME (trcask123)
endif
FOR i=1 TO trcask124
Report Form (winreport) To Print nocons
ENDFOR
This is very basic stuff, I would have thought, BUT, I keep getting
Error accessing printer spooler
When I do this at my place, no problem if i print to a local printer
No problem if I embed the network printer in with the Report, and set printer environment on
(This is not a practical solution)
Can anyone offer any suggestions ?
This capture can happen in a large building with multiple pc's and phones.
When he/she captures the order, the order is printed on a specific choice of printer
So my system goes
trcask122=''
trcask123=''
trcask124=1
mypr=APRINTERS(gaPrn)
FOR i=1 TO mypr
trcask122=trcask122+gaprn(i,1)+","
ENDFOR
do form windpslp && Combo, to choose the printer and number of copies
IF !EMPTY(trcask123)
SET PRINTER TO NAME (trcask123)
endif
FOR i=1 TO trcask124
Report Form (winreport) To Print nocons
ENDFOR
This is very basic stuff, I would have thought, BUT, I keep getting
Error accessing printer spooler
When I do this at my place, no problem if i print to a local printer
No problem if I embed the network printer in with the Report, and set printer environment on
(This is not a practical solution)
Can anyone offer any suggestions ?