OK, I'll tell you what i've got so far. On opening an Access Report I am running a Stored Procedure (a Select Query). Now my Recordset fields have values, but I cannot associate them to the controls I have placed on my Report. What am I doing wrong?? For example
txtFamilyName=r s.Fields(2)
Produces a runtime error 438. Object doesn't support this property or Method. I've tried assigning a String Variable to the field 1st, and then assign the variable to the control, but I get the same error.
Please Help!!! Getting pretty desperate.
txtFamilyName=r s.Fields(2)
Produces a runtime error 438. Object doesn't support this property or Method. I've tried assigning a String Variable to the field 1st, and then assign the variable to the control, but I get the same error.
Please Help!!! Getting pretty desperate.
Comment