Problem creating MDE

What do you mean by Reset References?
 
MiAs said:
When trying to compile, as mentioned I get error message:Method or data member not found.
I have several txt-cbo boxes on form

Private Sub cboSurname1 AfterUpdate()
Me.txtNumber1=Me.cboSurname1.Column(1)
End Sub

The highlighted bit is .cboSurname1
Recreate the textbox and combo as stated (Don't just copy and paste).
Also try:
Code:
Me.[txtNumber1].value = Me.[cboSurname1].Column(1)
 
Problem sorted.
It was a code error that was strikingly obvious in the end,don't know how it ever worked as well as it did!!
Thanks to all who contributed.
;)
 

Users who are viewing this thread

Back
Top Bottom