When I attempt to compile the database I'm working on I get an error message that says:
Me.LabelList is then highlighted from my vba code:
I've verified and double verified that this is the correct name of the list box being referenced and the code works fine when I double click on a record from the list box. The only Issue I seem to be having with it is when I attempt to compile my code.
Any ideas why I might be experiencing this problem?
Thank you,
Bruce
Method or data member not found.
Me.LabelList is then highlighted from my vba code:
Code:
Private Sub LabelList_DblClick(Cancel As Integer)
DoCmd.OpenForm "frmLabels", acNormal, , "[LabelID] = " & Me.LabelList
End Sub
I've verified and double verified that this is the correct name of the list box being referenced and the code works fine when I double click on a record from the list box. The only Issue I seem to be having with it is when I attempt to compile my code.
Any ideas why I might be experiencing this problem?
Thank you,
Bruce