Hi,<br><br>I am playing around with converting some of my existing VFP apps so that they make more use of SQL. However, I am having problems with the UPDATE command - whenever I reference an object i.e. a text box on a form, I get the error message "TXTADDRESS3 is not an object". My question is, why the error message, and how can I grab a value from a text box by referencing it directly instead of storing it to a memory variable first (which seems to work).<br><br>UPDATE customer ;<br> SET ;<br> address1 = m.address1, ;<br> address2 = m.address2, ;<br> address3 = thisform.txtAddress3.value ;<br> WHERE ; <br> custno = 0<br><br>Thanks<br>