Do a Compile on your application. (It's under the Debug menu while you're in
the Editor)

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
Okay, I did that and it said the compile error is 'Invalid inside procedure'
and it's highlighting the Option Explicit line of my code.
> Do a Compile on your application. (It's under the Debug menu while you're in
> the Editor)
[quoted text clipped - 64 lines]
> >> >
> >> > End Sub
Douglas J. Steele - 28 Nov 2006 18:36 GMT
I didn't even notice that!
Move that line to the beginning of the file, either just before or just
after Option Compare Database (it shouldn't matter which)

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Okay, I did that and it said the compile error is 'Invalid inside
> procedure'
[quoted text clipped - 73 lines]
>> >> >
>> >> > End Sub
JimB - 28 Nov 2006 18:54 GMT
You never ended your Detail_Click() subroutine. Maybe you accidentally
deleted the end sub statement. Your trying to start a new subroutine before
ending the other one.
Jim B.
> Okay, I did that and it said the compile error is 'Invalid inside procedure'
> and it's highlighting the Option Explicit line of my code.
[quoted text clipped - 67 lines]
> > >> >
> > >> > End Sub