hexagon logo

Getting data from PCDMIS

I am looking for a breakdown of how PCDMIS handles data output from a part (probed data).
From the many posts in this forum that I have read; I get the impression one must retrieve data from PCDMIS via macros or VB/VBA code!?

Is there any method to get a "text delimited" or "csv" file output of reported data?
Or can the "printed" report be saved as a "text delimited" file or as a text file as WYSIWYG?

All help is appreciated!
Parents
  • Write line will write a line of data, you specify what is in the line. It adds a carriage return and line feed at the end. You must pecify (hard code) what gets sent it does not send a report, just what you tell it to. In my example I am sending the diameter of circle 1 (we'll say it is 1.125) and a comma and the diameter of circle 2 (we'll say is 1.312) so your text file will have:

    1.125,1.312

    Make sure you use append of it will overwrite.
Reply
  • Write line will write a line of data, you specify what is in the line. It adds a carriage return and line feed at the end. You must pecify (hard code) what gets sent it does not send a report, just what you tell it to. In my example I am sending the diameter of circle 1 (we'll say it is 1.125) and a comma and the diameter of circle 2 (we'll say is 1.312) so your text file will have:

    1.125,1.312

    Make sure you use append of it will overwrite.
Children
No Data