Your Products have been synced, click here to refresh
Dph51 is right !
So you can at the start of the prog :
ASSIGN/V1=SYSTEMDATE("dd/MM/yyyy")
ASSIGN/V2=ELEMENT(1,"/",V1)
ASSIGN/V3=ELEMENT(2,"/",V1)
ASSIGN/V4=ELEMENT(3,"/",V1)
Then create a generic point :
DATE =GENERIC/POINT,DEPENDANT,CARTESIAN,$
NOM/XYZ,<V2,V3,V4>
MEAS/XYZ,<V2,V3,V4>
NOM/IJK,<0,0,1>
MEAS/IJK,<0,0,1>
It gives on the txt file :
DATE,19.000000,5.000000,2017.000000,0.000000,0.000000,1.000000
If you do the same with SYSTEMTIME, and put values in the vector values, you will have what you want.... With a lot of .000000 in addition![]()
Yeah, that's apples and oranges. A TXT export is done so that you can read the program into another software. I'm wondering if jelim is talking about outputting dimensions to an RTF file? Or if he's talking about exporting a program. I ask because why would you need a date time stamp for an exported program?
Mike
ASSIGN/DATE = SYSTEMDATE("MM_dd_yyyy") ASSIGN/TIME = SYSTEMTIME("HH_mm") ASSIGN/FILENAME = "P:\Reports\Customer\PartNumber\_"+DATE+"_"+TIME+" .rtf" PRINT_IN =COMMENT/INPUT,YES,''Select a print option: , ,1 .... Print the report ,2 .... Skip the printed report' IF_GOTO/PRINT_IN.INPUT=="1",GOTO = YESPRINT IF_GOTO/PRINT_IN.INPUT=="2",GOTO = NOPRINT GOTO/PRINT_IN YESPRINT =LABEL/ PRINT/REPORT,EXEC MODE=END,$ TO_FILE=ON,OVERWRITE=FILENAME,$ TO_PRINTER=ON,DRAFTMODE=OFF,$ TO_DMIS_REPORT=OFF,FILE_OPTION=INDEX,FILENAME=,$ REPORT_THEORETICALS=NONE,REPORT_FEATURE_WITH_DIMEN SIONS=NO,$ PREVIOUS_RUNS=DELETE_INSTANCES GOTO/END_PROGRAM NOPRINT =LABEL/ PRINT/REPORT,EXEC MODE=END,$ TO_FILE=ON,OVERWRITE=FILENAME,$ TO_PRINTER=OFF,DRAFTMODE=OFF,$ TO_DMIS_REPORT=OFF,FILE_OPTION=INDEX,FILENAME=,$ REPORT_THEORETICALS=NONE,REPORT_FEATURE_WITH_DIMEN SIONS=NO,$ PREVIOUS_RUNS=DELETE_INSTANCES
© 2024 Hexagon AB and/or its subsidiaries. | Privacy Policy | Cloud Services Agreement |