VB Run Time Error 438

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Object doesn't support this property or method.

I have an input screen containing 5 contact names.
When the user enters these or changes them I want to create/update a further
field on my table that is a memo field made up of the 5 contact names. This
field is going to be used later on in the application.

Has anyone any suggestions as to how this can be done?
I have tried but am getting the above error.
 
It would help if you could show the line of code that raises the error,
along with the declaration and instantiation of any variables used in that
line.
 
Me!Contacts = Me!Contact1Name & Me!Contact2Name etc.
Contacts is the memo field and the others are the 5 contact names.
I do this as an Event Procedure on the Before Update property.
P.S. I am not a VB programmer so forgive me if I am doing something stupid.
 
Is the form bound directly to a table, or is it bound to a SQL statement or
saved query? If it is bound to a SQL statement or saved query, is the field
'Contacts' included in the SELECT clause? If it isn't, the code behind the
form will not recognize 'Contacts' as a property of the form.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

How do I ??? 1
Set Focus Erro 438 9
Run time error - 438 2
Run time error 438 2
How to CallByName a sub in another module? 21
Run-time error 438? 13
Run-time error 438 1
Run-time Error '6' overflow in Access 97 7

Back
Top