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
-
* CrystalDiskMark may shorten SSD/USB Memory life
by
Alex5723
36 minutes ago -
Ben’s excellent adventure with Linux
by
Ben Myers
26 seconds ago -
Seconds are back in Windows 10!
by
Susan Bradley
37 minutes ago -
WebBrowserPassView — Take inventory of your stored passwords
by
Deanna McElveen
38 minutes ago -
OS news from WWDC 2025
by
Will Fastie
40 minutes ago -
Need help with graphics…
by
WSBatBytes
3 hours, 57 minutes ago -
AMD : Out of Bounds (OOB) read vulnerability in TPM 2.0 CVE-2025-2884
by
Alex5723
14 hours, 53 minutes ago -
Totally remove or disable BitLocker
by
CWBillow
13 hours, 46 minutes ago -
Windows 10 gets 6 years of ESU?
by
n0ads
1 hour, 42 minutes ago -
Apple, Google stores still offer China-based VPNs, report says
by
Nibbled To Death By Ducks
1 day, 1 hour ago -
Search Forums only bring up my posts?
by
Deo
1 day, 1 hour ago -
Windows Spotlight broken on Enterprise and Pro for Workstations?
by
steeviebops
1 day, 13 hours ago -
Denmark wants to dump Microsoft for Linux + LibreOffice
by
Alex5723
1 day, 5 hours ago -
How to get Microsoft Defender to honor Group Policy Setting
by
Ralph
1 day, 13 hours ago -
Apple : Paragon’s iOS Mercenary Spyware Finds Journalists Target
by
Alex5723
2 days ago -
Music : The Rose Room – It’s Been A Long, Long Time album
by
Alex5723
2 days, 1 hour ago -
Disengage Bitlocker
by
CWBillow
1 day, 15 hours ago -
Mac Mini M2 Service Program for No Power Issue
by
Alex5723
2 days, 3 hours ago -
New Win 11 Pro Geekom Setup questions
by
Deo
1 day, 1 hour ago -
Windows 11 Insider Preview build 26200.5651 released to DEV
by
joep517
2 days, 10 hours ago -
Windows 11 Insider Preview build 26120.4441 (24H2) released to BETA
by
joep517
2 days, 10 hours ago -
iOS 26,, MacOS 26 : Create your own AI chatbot
by
Alex5723
2 days, 14 hours ago -
New PC transfer program recommendations?
by
DaveBoston
19 hours, 19 minutes ago -
Windows 11 Insider Preview Build 22631.5545 (23H2) released to Release Preview
by
joep517
2 days, 18 hours ago -
Windows 10 Build 19045.6029 (22H2) to Release Preview Channel
by
joep517
2 days, 18 hours ago -
Best tools for upgrading a Windows 10 to an 11
by
Susan Bradley
2 days, 6 hours ago -
The end of Windows 10 is approaching, consider Linux and LibreOffice
by
Alex5723
1 day, 10 hours ago -
Extended Windows Built-in Disk Cleanup Utility
by
bbearren
1 day, 19 hours ago -
Win 11 24H2 June 2025 Update breaks WIFI
by
dportenlanger
3 days, 13 hours ago -
Update from WinPro 10 v. 1511 on T460p?
by
CatoRenasci
2 days, 11 hours ago
Recent blog posts
- Ben’s excellent adventure with Linux
- Seconds are back in Windows 10!
- WebBrowserPassView — Take inventory of your stored passwords
- OS news from WWDC 2025
- Best tools for upgrading a Windows 10 to an 11
- Master patch listing for June 10, 2025
- 24H2 may not be offered June updates
- June 2025 updates are out
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.