Cancel = true not defined

J

JOM

I am trying to compile my my code but its saying that Cancel = True is not
defined.... Why would that be?
 
6

'69 Camaro

Most likely, this code was pasted into the procedure from another procedure.
The current procedure doesn't have Cancel as a variable passed to it as one
of the parameters, and it's not defined in the procedure. For example, in
the procedure's parameters:

Private Sub cboOther_BeforeUpdate(Cancel As Integer)

.. . . or declared as a local variable:

Dim Cancel As Boolean

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips.

(Please remove ZERO_SPAM from my reply E-mail address so that a message will
be forwarded to me.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.
 
J

JOM

Thanks alot for that information which was true!

'69 Camaro said:
Most likely, this code was pasted into the procedure from another procedure.
The current procedure doesn't have Cancel as a variable passed to it as one
of the parameters, and it's not defined in the procedure. For example, in
the procedure's parameters:

Private Sub cboOther_BeforeUpdate(Cancel As Integer)

. . . or declared as a local variable:

Dim Cancel As Boolean

HTH.
Gunny

See http://www.QBuilt.com for all your database needs.
See http://www.Access.QBuilt.com for Microsoft Access tips.

(Please remove ZERO_SPAM from my reply E-mail address so that a message will
be forwarded to me.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.
 
Top