When you create a screen with fields with the ENTRY IF option, you must write a procedure designer for the ID number in order to obtain the same behavior in change mode than in entry mode.<br><br>Is there any special reason for it or I'm missing something?
<br><br>It is possible that Qdesign autogenerate the code if the procedure doesn't already exists?<br><br>Kind regards,<br><br>Daniel Rodriguez<br><br><br>SCREEN PRUEBA<br><br>TEMP TFIELD1 CHAR*2<br>TEMP TFIELD2 CHAR*2
<br><br>FIELD TFIELD1<br>FIELD TFIELD2 ENTRY IF TFIELD1 = "XX"<br><br>PROCEDURE DESIGNER 02<br>BEGIN<br> IF TFIELD1 = "XX"<br> THEN<br> ACCEPT TFIELD2 <br>END <br><br><br>