I should have asked about this while the last service engineer was here but I did not think about it at that time. I would like to know how to turn off the output file name box which comes up while saving reports.
Saving reports
Collapse
X
-
File>Printing>Report Window Print Setup
On the report tab, do you have Report output selected with the 'Prompt' function selected?
You can automate this and uncheck the Report Output or update to Auto.
-
this is what I use.
Beginning program:
C1 =COMMENT/INPUT,NO,FULL SCREEN=NO,
"ENTER SERIAL NUMBER"
ASSIGN/NEWSN=C1.INPUT
End of program:
​
FPTR =FILE/OPEN,C:\PROGRAM FILES\HEXAGON\CMM PRINTOUT ADDRESS\ADDRESS.TXT,READ (this text file is saved here with the default network location for all reports)
V1 =FILE/READLINE,FPTR,{FN}
FILE/CLOSE,FPTR,KEEP
ASSIGN/VDATE=SYSTEMDATE("MM-dd-yy")
ASSIGN/VTIME=SYSTEMTIME("HH.mm.ss")
ASSIGN/PN="PART#\"
ASSIGN/FILE=FN + PN + NEWSN + "_" + VDATE + "_" + VTIME + ".PDF"
PRINT/REPORT,EXEC MODE=END,$
TO_FILE=ON,APPEND=FILE,AUTO OPEN=OFF,$
TO_PRINTER=OFF,COPIES=1,$
TO_DMIS_REPORT=OFF,FILE_OPTION=INDEX,FILENAME=,$
REPORT_THEORETICALS=NONE,REPORT_FEATURE_WITH_DIMEN SIONS=NO,$
TO_EXCEL=OFF,$
PREVIOUS_RUNS=DELETE_INSTANCES​
Comment
-
That is the Amyuni print driver dialog (notice the Concatenate check box). Not pcdmis. There is a registry setting that needs user permissions.
Hi all, first post here and I'm desperate to get this fixed. So, I'm trying to output an RTF file of my measurement results. I already went to Report Window Print Setup and set the output to RTF. When I press the print button in my report window when I'm ready to save the data, it will have me choose a destination for my file
For future reference the registry setting is H_KEY_CURRENT_CONFIG/SOFTWARE/PCDMIS 50 CONVERTER the logged in PC user needs to have full access rights to this registry setting to allow print commands to work in Windows10
Comment
Related Topics
Collapse
-
by procmmWe need to set up auto save for our reports to a server, can any one help assign or script for this.
we use this for OMI PROGRAMS
...-
Channel: PC-DMIS for CMMs
06-15-2016, 04:22 PM -
-
by ScotsterI'm running small batches of separate serial numbers. I'm just looking to automatically add an index to each set of results saved to file. The trouble...
-
Channel: PC-DMIS for CMMs
05-24-2014, 07:02 AM -
-
by 1954CDBM1Morning programmers,
Code uploaded as attachments.
This works perfectly with the notable exception that you are forced to finish...-
Channel: PC-DMIS for CMMs
01-09-2019, 07:31 AM -
-
by GregorHello
I have a problem with reading the text file. In my company we have 4 cmm at different speeds, I would like to create a text file with the...Starts07-01-2018Ends07-02-2018-
Channel: PC-DMIS for CMMs
07-02-2018, 05:07 PM -
-
by bobc12345Is there a way to read what the next feature I.D. number ( i.e. POINT1 ) will be without creating a feature? I was hoping to read a variable that would...
-
Channel: PC-DMIS for CMMs
01-24-2013, 11:51 AM -
Comment