+3
The ability to run multiple parts in a single program and report our all parts without having to run the data into another program. Production layouts require 6 parts to be ran on the same program, I would like to loop the program and report out all par
rreynolds vor 7 Jahren
in Metrology Software / PC-DMIS
•
aktualisiert von Chris Rogers vor 5 Jahren •
2
Reporting of Multiple Parts
Customer support service by UserEcho
I must be missing something here.
That functionality seems to already exist.
Below is a simple example of what I believe you want to accomplish
C3 =COMMENT/INPUT,YES,FULL SCREEN=NO,
HOW MANY PARTS TO RUN
ASSIGN/COUNT=0
(###### insert coordinate here turn on DCC ######)
DO/
IF/COUNT <>0
COMMENT/OPER,NO,FULL SCREEN=NO,AUTO-CONTINUE=NO,
LOAD NEXT PART NOW
END_IF/ ASSIGN/V1=COUNT+1
COMMENT/REPT,
"***** REPORT FOR PART " +V1+ " OF "+C3.INPUT+ " *****"
(###### part inspection here ######)
MOVE/INCREMENT,<0,3,3>
FORMFEED/
ASSIGN/COUNT=COUNT+1
UNTIL/COUNT==C3.INPUT