If you're not using a data connection, you can always set the Data
Binding to 'Use global data' in the Binding tab under your Object
palette.Also, if I understand correctly, you would like the field to be
editable on the first page but read only on all subsequent pages?? If
that's the case and assuming your masterpage is named 'Page1' you can
use this code in the ready:layout event:if (Page1.index==0)
this.access="open";else this.access="protected";Kyle