|
How do I print Job Notes in a report?Technote 115 Problem: Solution: In order to print "Job Info" notes from Version 9 Job Operation Planner, the following additions
must be added to your Note: The additions are in italics. extern integer units, rev;
extern string smf_file, created;
extern string rev_date, creator;
extern string prt_desc, matl_desc;
extern string job_note, mach_desc, matl_notes;
procedure section_5010000
{
format ("Job Operations File= %s Date Created= %s\n", jof_file,
created);
format (" Revisions= %-d Date Revised= %s\n\n", rev, rev_date);
format (" Created by= %s\n\n", creator);
format (" Machine Type= %s Units= %s\n", mach_desc, map ( units,
["Inch", "Metric"]));
format ("Part Description= %s\n", prt_desc);
format (" Material Desc= %s\n\n", matl_desc);
format (" Job Notes= %s\n\n", job_note);
format (" Material Notes= %s\n\n", matl_notes);
newpage();
}
|
Copyright © 2025 SmartCAMcnc. All Rights Reserved