A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Cancel still adds record



 
 
Thread Tools Display Modes
  #1  
Old February 1st, 2006, 12:26 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Cancel still adds record

On a popup form I have a button to close the form. If the form is open to
ADD a record and the user changes his/her mind I'd like to close the form
without adding a blank record. The following bit of code (I thought) would
handle this but I still get a blank rcord added. The code by the way comes
right from an example page within access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated


  #2  
Old February 1st, 2006, 01:04 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Cancel still adds record

Looks like it should work. This code is fired on the form's BeforeUpdate
event? And CustomerID is not an auto-number with one or more other fields
defaulted?
-Ed

"Tee See" wrote in message
.. .
On a popup form I have a button to close the form. If the form is open to
ADD a record and the user changes his/her mind I'd like to close the form
without adding a blank record. The following bit of code (I thought) would
handle this but I still get a blank rcord added. The code by the way comes
right from an example page within access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated



  #3  
Old February 1st, 2006, 01:19 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Cancel still adds record

Well now you've got me thinking!
This code is fired from OnClick under a command button and CustomerID is not
an auto-number.
If I want the user (ME) to click a button to close the form how would I get
the code under the BeforeUpdate event?

Thanks for the response Ed.

"Ed Robichaud" wrote in message
...
Looks like it should work. This code is fired on the form's BeforeUpdate
event? And CustomerID is not an auto-number with one or more other fields
defaulted?
-Ed

"Tee See" wrote in message
.. .
On a popup form I have a button to close the form. If the form is open to
ADD a record and the user changes his/her mind I'd like to close the form
without adding a blank record. The following bit of code (I thought)
would handle this but I still get a blank rcord added. The code by the
way comes right from an example page within access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated





  #4  
Old February 1st, 2006, 01:22 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Cancel still adds record

Try adding:

DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, , acMenuVer70

one space downs after the last End If

HTH,
Gina

"Ed Robichaud" wrote in message
...
Looks like it should work. This code is fired on the form's BeforeUpdate
event? And CustomerID is not an auto-number with one or more other fields
defaulted?
-Ed

"Tee See" wrote in message
.. .
On a popup form I have a button to close the form. If the form is open to
ADD a record and the user changes his/her mind I'd like to close the form
without adding a blank record. The following bit of code (I thought)
would handle this but I still get a blank rcord added. The code by the
way comes right from an example page within access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated





  #5  
Old February 1st, 2006, 01:25 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default OOPS MADE BOO-BOO Cancel still adds record

That would be before the DoCmd.Close

"Ed Robichaud" wrote in message
...
Looks like it should work. This code is fired on the form's BeforeUpdate
event? And CustomerID is not an auto-number with one or more other fields
defaulted?
-Ed

"Tee See" wrote in message
.. .
On a popup form I have a button to close the form. If the form is open to
ADD a record and the user changes his/her mind I'd like to close the form
without adding a blank record. The following bit of code (I thought)
would handle this but I still get a blank rcord added. The code by the
way comes right from an example page within access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated





  #6  
Old February 1st, 2006, 01:39 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Cancel still adds record

Thanks Gina that seems to work .... Would you be able to explain briefly
what that line of code is about?
Greatly appreciate the help.

"Gina Whipp" wrote in message
...
Try adding:

DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, , acMenuVer70

one space downs after the last End If

HTH,
Gina

"Ed Robichaud" wrote in message
...
Looks like it should work. This code is fired on the form's BeforeUpdate
event? And CustomerID is not an auto-number with one or more other
fields defaulted?
-Ed

"Tee See" wrote in message
.. .
On a popup form I have a button to close the form. If the form is open
to ADD a record and the user changes his/her mind I'd like to close the
form without adding a blank record. The following bit of code (I
thought) would handle this but I still get a blank rcord added. The code
by the way comes right from an example page within access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated







  #7  
Old February 1st, 2006, 03:35 AM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Cancel still adds record

All it is Un-Do. I had the same problem you did. I realized that the
record is created as soon as the form to add new is opened. So I was trying
to cancel a record that in a sense was already added and it couldn't. So I
had to Un-Do to get rid of the new record and then cancel to cancel the
event.

I finally figured it out by reading about how and when form events are
triggered.

It probably could be better explained by one of the gurus but I hope that
helps.

Gina

"Tee See" wrote in message
.. .
Thanks Gina that seems to work .... Would you be able to explain briefly
what that line of code is about?
Greatly appreciate the help.

"Gina Whipp" wrote in message
...
Try adding:

DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, , acMenuVer70

one space downs after the last End If

HTH,
Gina

"Ed Robichaud" wrote in message
...
Looks like it should work. This code is fired on the form's
BeforeUpdate event? And CustomerID is not an auto-number with one or
more other fields defaulted?
-Ed

"Tee See" wrote in message
.. .
On a popup form I have a button to close the form. If the form is open
to ADD a record and the user changes his/her mind I'd like to close the
form without adding a blank record. The following bit of code (I
thought) would handle this but I still get a blank rcord added. The
code by the way comes right from an example page within access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated









  #8  
Old February 1st, 2006, 01:10 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Cancel still adds record

Here is some code that I might use to do this

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
Me.Undo 'Undoes all changes to the record
DoCmd.Close acForm, Me.Name 'Close the form running this code
End If
End If

"Tee See" wrote in message
.. .
On a popup form I have a button to close the form. If the form is open to
ADD a record and the user changes his/her mind I'd like to close the form
without adding a blank record. The following bit of code (I thought) would
handle this but I still get a blank rcord added. The code by the way comes
right from an example page within access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated



  #9  
Old February 1st, 2006, 02:10 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Cancel still adds record

While I am nowhere near being a guru, I beieve that the DoMenuItem line of
code you have provided can be replaced with:
Me.Undo
except that I think it needs to be added within the If statement, just
before DoCmd.Close. If it is placed after the If statement then the code
will run, and the record will be undone, no matter whether the user selects
OK or Cancel. I think you could avoid that by using vbOK instead of
vbCancel, and adding Cancel = True:

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbOK Then
Cancel = True
Else
Me.Undo
DoCmd.Close
End If
End If

Just as a thought, I find it easier to work with the code if I am not
dealing with a long string in the middle of an If statement or something
like that. I like to start with:

dim strMsg as String
strMsg = "CustomerIDCode must contain a value...etc."

Then in the msgbox line of code:

If msgbox strMsg = vbCancel Then
etc.
"Gina Whipp" wrote in message
...
All it is Un-Do. I had the same problem you did. I realized that the
record is created as soon as the form to add new is opened. So I was
trying to cancel a record that in a sense was already added and it
couldn't. So I had to Un-Do to get rid of the new record and then cancel
to cancel the event.

I finally figured it out by reading about how and when form events are
triggered.

It probably could be better explained by one of the gurus but I hope that
helps.

Gina

"Tee See" wrote in message
.. .
Thanks Gina that seems to work .... Would you be able to explain briefly
what that line of code is about?
Greatly appreciate the help.

"Gina Whipp" wrote in message
...
Try adding:

DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, , acMenuVer70

one space downs after the last End If

HTH,
Gina

"Ed Robichaud" wrote in message
...
Looks like it should work. This code is fired on the form's
BeforeUpdate event? And CustomerID is not an auto-number with one or
more other fields defaulted?
-Ed

"Tee See" wrote in message
.. .
On a popup form I have a button to close the form. If the form is open
to ADD a record and the user changes his/her mind I'd like to close
the form without adding a blank record. The following bit of code (I
thought) would handle this but I still get a blank rcord added. The
code by the way comes right from an example page within access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated











  #10  
Old February 1st, 2006, 04:34 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default Cancel still adds record

While I am nowhere near being a guru...

Ohhhh come on Bruce ;-)


"BruceM" wrote in message
...
While I am nowhere near being a guru, I beieve that the DoMenuItem line of
code you have provided can be replaced with:
Me.Undo
except that I think it needs to be added within the If statement, just
before DoCmd.Close. If it is placed after the If statement then the code
will run, and the record will be undone, no matter whether the user
selects OK or Cancel. I think you could avoid that by using vbOK instead
of vbCancel, and adding Cancel = True:

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbOK Then
Cancel = True
Else
Me.Undo
DoCmd.Close
End If
End If

Just as a thought, I find it easier to work with the code if I am not
dealing with a long string in the middle of an If statement or something
like that. I like to start with:

dim strMsg as String
strMsg = "CustomerIDCode must contain a value...etc."

Then in the msgbox line of code:

If msgbox strMsg = vbCancel Then
etc.
"Gina Whipp" wrote in message
...
All it is Un-Do. I had the same problem you did. I realized that the
record is created as soon as the form to add new is opened. So I was
trying to cancel a record that in a sense was already added and it
couldn't. So I had to Un-Do to get rid of the new record and then cancel
to cancel the event.

I finally figured it out by reading about how and when form events are
triggered.

It probably could be better explained by one of the gurus but I hope that
helps.

Gina

"Tee See" wrote in message
.. .
Thanks Gina that seems to work .... Would you be able to explain briefly
what that line of code is about?
Greatly appreciate the help.

"Gina Whipp" wrote in message
...
Try adding:

DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, , acMenuVer70

one space downs after the last End If

HTH,
Gina

"Ed Robichaud" wrote in message
...
Looks like it should work. This code is fired on the form's
BeforeUpdate event? And CustomerID is not an auto-number with one or
more other fields defaulted?
-Ed

"Tee See" wrote in message
.. .
On a popup form I have a button to close the form. If the form is
open to ADD a record and the user changes his/her mind I'd like to
close the form without adding a blank record. The following bit of
code (I thought) would handle this but I still get a blank rcord
added. The code by the way comes right from an example page within
access help.

If IsNull(Me![CustomerIDCode]) Then
If MsgBox("'CustomerIDCode' must contain a value." _
& Chr(13) & Chr(10) _
& "Press 'OK' to return and enter a value." _
& Chr(13) & Chr(10) _
& "Press 'Cancel' to abort the record.", _
vbOKCancel, "A Required field is Null") = _
vbCancel Then
DoCmd.Close
End If
End If

Any advice sincerely appreciated













 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
"Next Record If", Mail Merge Issues [email protected] Mailmerge 8 February 8th, 2006 07:11 PM
Append blank rows and first row to 11 [email protected] Running & Setting Up Queries 1 January 17th, 2006 01:59 PM
User Saving a Record else it deletes Carter Wexler Using Forms 1 August 2nd, 2005 11:57 PM
Access Mail Merge to Word.doc files ? RNUSZ@OKDPS Setting Up & Running Reports 1 May 18th, 2005 06:31 PM
Need Help In Printing Current Record in Specific Report RNUSZ@OKDPS Setting Up & Running Reports 1 May 16th, 2005 09:06 PM


All times are GMT +1. The time now is 04:30 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.