Avatar

Level 10

Ah ....now I understand. Assuming the checkboxes are called CheckBox1 and CheckBox2 and the DropList is called DDList1 then on CheckBox2 change event you would add this code:

if (this.rawValue == 1){

     DDList1.access = ""

} else {

     DDList1.access = "readOnly"

}

Also you woudl have the DDList set as readOnly to begin with.

Paul