Good morning.
I have been trying to format our output reports to generate a point map diagram of the out of tolerance items. The basic tact that I have taken is to generate a viewset of the points that make up the different feature sets.
http://i20.photobucket.com/albums/b2...well/FS_52.jpg
I have then constructed an If statement as:
The plan is to evaluate the dimension statement; recall the viewset if the dimension is out of tolerance; capture the viewset to the report; formfeed to the next item and repeat as needed. This would be really handy for our rework cycle as the Finishers would be able to see which point was out of tolerance and where the rework would need to take place.
My problem is that the once I generate the DISPLAY/METAFILE, "", CAD in my IF statement, the graphic stays hardcoded into the report, even if the item is in tolerance.
Where am I fouling up or is this one of the "charms" of PC-Dmis. BTW, I am doing this in 3.7 MR3.
Thanks for any help you may be able to give.
I have been trying to format our output reports to generate a point map diagram of the out of tolerance items. The basic tact that I have taken is to generate a viewset of the points that make up the different feature sets.
http://i20.photobucket.com/albums/b2...well/FS_52.jpg
I have then constructed an If statement as:
PHP Code:
DIM PRF_52= PROFILE OF SURFACE OF SET FS_52 FORMANDLOCATION UNITS=IN ,$
GRAPH=OFF TEXT=ON MULT=10.00 OUTPUT=BOTH
AX NOMINAL +TOL -TOL MEAS MAX MIN DEV OUTTOL
M 0.000 0.020 0.020 0.000 0.000 0.000 0.000 0.000 -#-
IF/PRF_52.OUTTOL <> 0.000
RECALL/VIEWSET,FS_52
DISPLAY/METAFILE, "", CAD
FORMFEED/
END_IF/
My problem is that the once I generate the DISPLAY/METAFILE, "", CAD in my IF statement, the graphic stays hardcoded into the report, even if the item is in tolerance.
Where am I fouling up or is this one of the "charms" of PC-Dmis. BTW, I am doing this in 3.7 MR3.
Thanks for any help you may be able to give.
Comment