I am using VBA and I keep getting an error that says I have a Method or Data member not found.
It highlights the .txtAddress1 piece of the following code....
VB Code:
strSQL = "UPDATE tblAccounts SET User_Define_3a = '" & Form_frmBldrResiAddrinGP.txtBuilder & "'" & _ ", PHONE1 = '" & Form_frmBldrResiAddrinGP.txtPhone1 & "'" & _ ", PHONE2 = '" & Form_frmBldrResiAddrinGP.txtPhone2 & "'" & _ ", CUSTNAME = '" & Form_frmBldrResiAddrinGP.txtCustName & "'" & _ ", ADDRESS1 = '" & Form_frmBldrResiAddrinGP.txtAddress1 & "'" & _
The previous ones work. I don't get why I am getting the error on the last part. Yes, the "txtAddress1" is spelled correctly. After Form_frmBldrResiAddrinGP I even hit period '.' and manually selected txtAddress1 from the drop down list. The text box is also named correctly on the form as it is showing on the drop list. I don't get what's going on.
