Cancel = true not defined

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to compile my my code but its saying that Cancel = True is not
defined.... Why would that be?
 
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.
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Dialog Form Code 3
IsLoaded not working 2
VBA CODE HELP! 0
Cancel = True "variable not defined" 3
Excel Providing user message when RED X clicked & properly closing application. 2
Cancel = true 1
Save Button 2
Else without If 3

Back
Top