MajP
You've got your good things, and you've got mine.
- Local time
- Today, 02:50
- Joined
- May 21, 2018
- Messages
- 9,539
If Command177_Click is a procedure within the form module from where you are calling it thenIf I use Call Me.Command177_Click, I get the error message - Method or data member not found
Will work. However the error message is quite obvious "Method or data member not found"Call Me.Command177_Click
That means you either have a typo in the name or no such method exists within the form from where you call that procedure.
If you tye "Me.Co...". and intellisense does not bring up the method then it does not exist in the current form module.
I assume that is what you meant. That error is harder to diagnose, but again I assume it is a typo in the naming.If I use Forms!SearchBuild.commandbutton248_clicK, I get - Application-defined or object-defined error