+3 votes
in Class 12 by kratos

Write java statement to make the Net Fee text field named txtNetFee un-editable at run time.

1 Answer

+2 votes
by kratos
 
Best answer

txtNetFee.setEditable(false);

...