I have a Payments form that has two check boxes. One for Cheque, and the other for Cash. I need to be able to check and see if one of those boxes is filled in before my form will let you close it or print off a receipt. I still want them to be able to close the form if they have not entered in a record.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
How To Check If Two Fields Are Filled Out (Access 2000)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » How To Check If Two Fields Are Filled Out (Access 2000)
- This topic has 22 replies, 4 voices, and was last updated 21 years, 1 month ago.
AuthorTopicWSJenniferS
AskWoody LoungerMay 12, 2004 at 7:52 pm #404837Viewing 1 reply threadAuthorReplies-
WSFrancois
AskWoody LoungerMay 12, 2004 at 8:06 pm #826550 -
WSJenniferS
AskWoody LoungerMay 12, 2004 at 9:14 pm #826632I’m trying that, but I have a mistake somewhere. This is the code I have:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Me.Cheque + Me.Cash -1 Then
MsgBox “You need to check off whether this payment is made by Cheque, or by Cash.”
End IfEnd Sub
I put this in the BeforeUpdate property of the form itself. And I put it in to the OnClick event of the Close button. I keep getting an error saying that “Object doesn’t support this property or method. What does this mean? I must be missing something.
-
WSFrancois
AskWoody LoungerMay 12, 2004 at 9:29 pm #826640As in your previous post you forget to cancel:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Me.cheque + Me.cash -1 Then
MsgBox “You need to check off whether this payment is made by Cheque, or by Cash.”
Cancel = True
End If
End SubAnd if you have a button to print use something like this in the on clickevent of the this button:
Private Sub cmdPrint_Click()
If Me.cheque + Me.cash -1 Then
MsgBox “You need to check off whether this payment is made by Cheque, or by Cash.”
Exit Sub
End If
DoCmd.OpenReport “test”
End Sub -
WSJenniferS
AskWoody LoungerMay 12, 2004 at 9:40 pm #826644Still having trouble. This is what I have on the Click event of the Close button:
Private Sub ClosePayments_Click()
On Error GoTo Err_ClosePayments_ClickIf Me.Chq + Me.Cash -1 Then
MsgBox “You need to check off whether this payment is made by Cheque, or by Cash.”
Exit Sub
End IfIf Payment FTotalApplied Then
MsgBox “The amounts applied do not equal the amount of your payment”
Payment.SetFocus
Else
DoCmd.Close
End IfExit_ClosePayments_Click:
Exit SubErr_ClosePayments_Click:
MsgBox Err.Description
Resume Exit_ClosePayments_ClickEnd Sub
It still gives me the “Object doesn’t support this property or method. Hmmmmmm….
-
WSFrancois
AskWoody Lounger -
WSFrancois
AskWoody Lounger
-
-
WSJenniferS
AskWoody LoungerMay 12, 2004 at 9:40 pm #826645Still having trouble. This is what I have on the Click event of the Close button:
Private Sub ClosePayments_Click()
On Error GoTo Err_ClosePayments_ClickIf Me.Chq + Me.Cash -1 Then
MsgBox “You need to check off whether this payment is made by Cheque, or by Cash.”
Exit Sub
End IfIf Payment FTotalApplied Then
MsgBox “The amounts applied do not equal the amount of your payment”
Payment.SetFocus
Else
DoCmd.Close
End IfExit_ClosePayments_Click:
Exit SubErr_ClosePayments_Click:
MsgBox Err.Description
Resume Exit_ClosePayments_ClickEnd Sub
It still gives me the “Object doesn’t support this property or method. Hmmmmmm….
-
-
WSFrancois
AskWoody LoungerMay 12, 2004 at 9:29 pm #826641As in your previous post you forget to cancel:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Me.cheque + Me.cash -1 Then
MsgBox “You need to check off whether this payment is made by Cheque, or by Cash.”
Cancel = True
End If
End SubAnd if you have a button to print use something like this in the on clickevent of the this button:
Private Sub cmdPrint_Click()
If Me.cheque + Me.cash -1 Then
MsgBox “You need to check off whether this payment is made by Cheque, or by Cash.”
Exit Sub
End If
DoCmd.OpenReport “test”
End Sub -
WSpatt
AskWoody Lounger -
WScharlotte
AskWoody LoungerMay 13, 2004 at 3:43 am #826687Actually, from within the form, you can use either the bang or dot and Access will recognize what you mean. The difference is that the dot gives you intellisense in the VBE window, while the bang gets compiled at runtime and reduced to a dot. The only places where you are constrained to use one or the other is in queries and when working in code with a recordset.
The bang in code behind the form will always indicate an object on the form, that is, a control. A dot may refer to the control or to the bound field in the recordset. Just try to keep straight whether you’re referring to the name of the control or the the underlying field.
-
WSpatt
AskWoody Lounger -
WSpatt
AskWoody Lounger -
WSJenniferS
AskWoody LoungerMay 13, 2004 at 6:27 pm #826936 -
WSFrancois
AskWoody Lounger -
WSJenniferS
AskWoody Lounger -
WSJenniferS
AskWoody Lounger -
WSFrancois
AskWoody Lounger -
WSJenniferS
AskWoody LoungerMay 13, 2004 at 6:27 pm #826937
-
-
WScharlotte
AskWoody LoungerMay 13, 2004 at 3:43 am #826688Actually, from within the form, you can use either the bang or dot and Access will recognize what you mean. The difference is that the dot gives you intellisense in the VBE window, while the bang gets compiled at runtime and reduced to a dot. The only places where you are constrained to use one or the other is in queries and when working in code with a recordset.
The bang in code behind the form will always indicate an object on the form, that is, a control. A dot may refer to the control or to the bound field in the recordset. Just try to keep straight whether you’re referring to the name of the control or the the underlying field.
-
-
WSpatt
AskWoody Lounger
-
-
WSJenniferS
AskWoody LoungerMay 12, 2004 at 9:14 pm #826633I’m trying that, but I have a mistake somewhere. This is the code I have:
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Me.Cheque + Me.Cash -1 Then
MsgBox “You need to check off whether this payment is made by Cheque, or by Cash.”
End IfEnd Sub
I put this in the BeforeUpdate property of the form itself. And I put it in to the OnClick event of the Close button. I keep getting an error saying that “Object doesn’t support this property or method. What does this mean? I must be missing something.
-
-
WSFrancois
AskWoody LoungerMay 12, 2004 at 8:06 pm #826551
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Microsoft : Edge is better than Chrome
by
Alex5723
2 hours, 25 minutes ago -
The EU launched DNS4EU
by
Alex5723
15 hours, 7 minutes ago -
Cell Phone vs. Traditional Touchtone Phone over POTS
by
280park
5 hours, 28 minutes ago -
Lost access to all my networked drives (shares) listed in My Computer
by
lwerman
20 hours, 33 minutes ago -
Set default size for pasted photo to word
by
Cyn
1 day, 2 hours ago -
Dedoimedo tries 24H2…
by
Cybertooth
14 hours, 41 minutes ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
2 days, 1 hour ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
1 day, 22 hours ago -
Small desktops
by
Susan Bradley
16 hours, 14 minutes ago -
Totally disable Bitlocker
by
CWBillow
19 hours, 7 minutes ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
1 day, 23 hours ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
3 days, 5 hours ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
1 day ago -
Mystical Desktop
by
CWBillow
3 days, 8 hours ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
2 days, 14 hours ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
1 hour, 24 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
4 days ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
4 days, 2 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
4 days ago -
What is wrong with simple approach?
by
WSSpoke36
1 day, 23 hours ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
4 days, 12 hours ago -
Location, location, location
by
Susan Bradley
3 days, 2 hours ago -
Cannot get a task to run a restore point
by
CWBillow
4 days, 13 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
4 days, 4 hours ago -
June 2025 Office non-Security Updates
by
PKCano
5 days ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
2 hours, 56 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
5 days ago -
How start headers and page numbers on page 3?
by
Davidhs
5 days, 10 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
4 days, 13 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
5 days, 19 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.