I'm attempting to insert a command to open up an instruction page for our Operators. Currently, an instruction page with pics and instructions are written in Word, then imported. Once the program is running, the instructions are no longer needed, not to mention increasing the program size with pictures.
A while ago, someone had posted a code for opening pictures by a Yes or No answer. I've never used these commands before, so needlessly to say I fumbled through and finally have this working...somewhat. Once the Demon is started, the picture automatically pops up regardless of the code. Can anyone tell me where I went wrong? We are using ver 2012mr1. TIA
C1 =COMMENT/YESNO,NO,FULL SCREEN=NO,AUTO-CONTINUE=NO,
DO YOU NEED TO SEE THE SETUP PICTURE?
IF_GOTO/C1.INPUT== "YES",GOTO = CS1
IF_GOTO/C1.INPUT=="NO",GOTO = NOPIC
CS1 =FORM/FILENAME= C:\CMM PROGRAMS\PRG 14\TEST FORM.FORM
PARAM/=
ENDFORM/
NOPIC =LABEL/
A while ago, someone had posted a code for opening pictures by a Yes or No answer. I've never used these commands before, so needlessly to say I fumbled through and finally have this working...somewhat. Once the Demon is started, the picture automatically pops up regardless of the code. Can anyone tell me where I went wrong? We are using ver 2012mr1. TIA
C1 =COMMENT/YESNO,NO,FULL SCREEN=NO,AUTO-CONTINUE=NO,
DO YOU NEED TO SEE THE SETUP PICTURE?
IF_GOTO/C1.INPUT== "YES",GOTO = CS1
IF_GOTO/C1.INPUT=="NO",GOTO = NOPIC
CS1 =FORM/FILENAME= C:\CMM PROGRAMS\PRG 14\TEST FORM.FORM
PARAM/=
ENDFORM/
NOPIC =LABEL/
Comment