InterviewSolution
| 1. |
Make A Field Editable On A Non-editable Form? |
|
Answer» There is a LITTLE trick to make a field EDITABLE on a NON-EDITABLE form which is to add this code to the field you want to STILL have ACCESS to. OnActivate() CurrForm.EDITABLE(TRUE); OnDeactivate() CurrForm.EDITABLE(FALSE); When you're on that field the form becomes editable again & when you leave it , it once again locks down. There is a little trick to make a field EDITABLE on a NON-EDITABLE form which is to add this code to the field you want to still have access to. OnActivate() CurrForm.EDITABLE(TRUE); OnDeactivate() CurrForm.EDITABLE(FALSE); When you're on that field the form becomes editable again & when you leave it , it once again locks down. |
|