how non editable field into editable?

Hi,

In my Form, i have one Chenckbox. Initial Stage , it must be a non editable one. after doing some operation, it should be change into editable one. For this functionality, where and how do this coding?

Regards,

smiley [:)][:)]

When opening the form - check the condition whether the operation is completed or not and enable/disable it.

write a method in the form

void enableFields()

{

Boolean enableMyField = false;

;

if (condition satisfied)

{

enableMyField = true;
}

Table_ds.object(fieldnum(Table,YourField)).enabled(enableMyField);

}

Call this method in init method of the Form Data source and after completion of your process…

Hi Kranthi,

Thanks for ur coding … it’s working now…

REgards,

smiley