MiAs Registered User. Local time Yesterday, 18:17 Joined Oct 25, 2004 Messages 49 Feb 13, 2005 #21 What do you mean by Reset References?
D dt01pqt Certified Local time Today, 02:17 Joined Mar 22, 2004 Messages 271 Feb 13, 2005 #23 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 Click to expand... Recreate the textbox and combo as stated (Don't just copy and paste). Also try: Code: Me.[txtNumber1].value = Me.[cboSurname1].Column(1)
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 Click to expand... Recreate the textbox and combo as stated (Don't just copy and paste). Also try: Code: Me.[txtNumber1].value = Me.[cboSurname1].Column(1)
MiAs Registered User. Local time Yesterday, 18:17 Joined Oct 25, 2004 Messages 49 Feb 13, 2005 #24 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.
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.