Jump to content

PCM to turn table file on or off at start of program when prompted to do so


---
 Share

Recommended Posts

I am not very familiar with PCM. Is there a PCM code to turn on or off at the beginning of a program when prompted to do?

Operator will be prompted for SPC with a Yes or No and if Yes will go to Table File and if No will not.

Any help would be greatly appreciated

Thanks
Thad
Link to comment
Share on other sites

Put this in presettings of the program

if confirm("Do you want to turn on table files")
	settingPut("resultToTableFile",true)
else
	settingPut("resultToTableFile",false)
endif
Link to comment
Share on other sites

 Share

×
×
  • Create New...