Hello Eagles,
I want to write an ULP that eventually opens the print dialog. From a SCR I was successful doing that by not adding a semikolon to the end of the print statement, but from my ULP that does not work. Any suggestions?
Thanks,
Paul
P.S.: My minimal example ULP looks like:
if (schematic) {
string cmd;
cmd += "print sheets all file schematic.pdf\n\n";
cmd += "export pinlist\n";
exit(cmd);