I'm having an issue with a FORM in PCDMIS. The idea is that the form pops up at the beginning of the program for the operator to enter some info.
CODE:
Form opens like it should, but the info doesn't stay. I know the RED portion is where the issue is, but for the life of me I cannot figure out why.
FYI, my fellow programmer has the EXACT same code in his program and it works GREAT.
It's like there is a disconnect somewhere.
Thanks in advance.
JK
CODE:
Code:
$$ NO, ==================== ASSIGN/CNC_MACH=0 ASSIGN/PAL_NUM=0 ASSIGN/SER_NUM=0 ASSIGN/SUB_TYPE=0 ASSIGN/EMP_NUM=0 $$ NO, ==================== FORMLABELREDO=LABEL/ CS1 =FORM/FILENAME= C:\USERS\DESKTOP\FORM1.FORM PARAM/=[COLOR=#FF0000]TEXTSERNUM.TEXT=SER_NUM[/COLOR] PARAM/=[COLOR=#FF0000]TEXTSUB.TEXT=SUB_TYPE[/COLOR] PARAM/=[COLOR=#FF0000]TEXTTEMPIDNUM.TEXT=EMP_NUM[/COLOR] PARAM/=[COLOR=#FF0000]TEXTOPNUMBER.TEXT=OP_NUM[/COLOR] PARAM/= ENDFORM/ $$ NO, ==================== IF_GOTO/SER_NUM==0,GOTO = FORMLABELREDO IF_GOTO/SUB_TYPE==0,GOTO = FORMLABELREDO IF_GOTO/EMP_NUM==0,GOTO = FORMLABELREDO
FYI, my fellow programmer has the EXACT same code in his program and it works GREAT.
It's like there is a disconnect somewhere.
Thanks in advance.
JK
Comment