Hi All,
I am trying to assign a value to a texbox.value but I am getting an error msg the the field I am trying to assign a value to is read only. How can I clear the read only property from this txtbox.
Any ideas on how to do this is greatly appreciated.
Private Sub Form_Load()
CustID.Value = Me.OpenArgs
End Sub
Thanks

Textbox is read only
Dietz
Hi,
I don't think it's the text box that's read only but the field which it is bound to. Check the CustID field of the forms data source and see if it's read only property is set. Could also be that the form has been bound to a query thats too complex to allow updates.
Hope that helps.