-
WSBCKessinger
AskWoody LoungerIn the criteria line of each column, put IS NULL; in the ‘update to’ line of each column, put 0 (Zero). Copy your table first, then try this.
-
WSBCKessinger
AskWoody LoungerCathy: Try this:
=DateSerial(Year(Date()),Month(Date())+1,0)
-
WSBCKessinger
AskWoody LoungerMy post read, set the breakpoint as normal, or as you would normally set a breakpoint, i.e., in VBE, Debug, Toggle breakpoint. Exit from VBE and click your button. Your code should stop at the breakpoint. Sorry I was a little vague. HTH.
-
WSBCKessinger
AskWoody LoungerLisa: This problem happened to me just yesterday. What I had to do was set the breakpoint as normal, then exit the VBE and return to my form and run the code (from a button click) and all worked well. HTH.
-
WSBCKessinger
AskWoody LoungerNovember 30, 2001 at 7:02 pm in reply to: preventing end date being earlier than start date (2000) #555336Roberta: Try this, making necessary name changes to meet your specs.
‘ Check to see that ending date is later than beginning date
If IsDate(BeginningDate) And IsDate(EndingDate) Then
If EndingDate < BeginningDate Then
MsgBox "The ending date must be later than the beginning date."
SetDate.Caption = "Set Ending Date"
SelectDate.SetFocus
Exit Sub
End If
Else
MsgBox " Please us a valid date for the" & vbCrLf & _
"beginning date and ending date values"
Exit Sub
End If -
WSBCKessinger
AskWoody LoungerThomas: Thanks. This will give me a start. Appreciate the reply.
-
WSBCKessinger
AskWoody LoungerThomas: Could just the structures be viewed?
-
WSBCKessinger
AskWoody LoungerThomas: I would love to see your survey Db. If you would, could you attach it to an e-mail. My address is bckessinger@cmhmetro.net. TIA.
-
WSBCKessinger
AskWoody LoungerTry Like *-FX
-
WSBCKessinger
AskWoody LoungerWendell: Thanks for the insights. I appreciate your response and I think I will take your advice to convert front-end/back-end at the same time.
-
WSBCKessinger
AskWoody LoungerI found the information I was looking for on, of all places, MS KB site, Q237313 which has a conversion white paper that can be downloaded.
-
WSBCKessinger
AskWoody LoungerThese work for me in calculating age in years and months. HTH.
Function AgeInYears(Bdate As Long)
Dim age
If IsNull(Bdate) Or Bdate > Now Then
age = Null
Exit Function
End IfAgeInYears = Year(Now) – Year(Bdate) + (DateSerial(Year(Now), _
Month(Bdate), Day(Bdate)) > Now)End Function
Function AgeInMonths(Bdate As Long)
Dim age
Dim AgeTemp
If IsNull(Bdate) Or Bdate > Now Then
age = Null
Exit Function
End IfAgeTemp = DateDiff(“m”, Bdate, Now) + (Day(Bdate) > Day(Now))
AgeTemp = AgeTemp / 12 – Int(AgeTemp / 12)
AgeInMonths = Format(AgeTemp * 12, “##”)End Function
Select * from table
ORDER BY Ageinyears([dtmBirthdate]), AgeInMonths([dtmBirthdate]); -
WSBCKessinger
AskWoody LoungerIt looks like you are parsing correctly for the most part. If you want to omit the hyphen in OFFICE, add 1 to the value in TEMP similar to this example.
OFFICE: Mid([Next],[Temp Name]+1)
This will start the parse 1 character past the hyphen. HTH.
-
WSBCKessinger
AskWoody LoungerSean: Try this link
http://www.mvps.org/access/reports/index.htm
Scroll down to ” Printing First and Last Page Numbers for Report Groups”. I have used it and it works. I think it is what you want. Do read it carefully as it is intense. HTH.
-
WSBCKessinger
AskWoody LoungerJohn: I had the same question some time back and this is the response I received from Microsoft. I never had the chance to try it though, so let us know. HTH.
If you are curious about how to have more than 8 buttons per switchboard page,
you can perform the following steps to test:
I assume that you have a main switchboard form named “switchboard” in your
database.
1. Back up the database first.
2. Open the “switchboard” form in design view.
3. Add the ninth button named “Option9” and in the “On Click” event property
sheet input “=HandleButtonClick(9)”.
4. Add the ninth label named “OptionLabel9” and in the “On Click” event
property sheet input “=HandleButtonClick(9)”. Also, set its “caption” property
to “command9”
5. Save the changes and then open VBE by press ALT+F11.
6. Find the underlying VBA module of “switchboard”. Its name should be
“Form_switchboard”.
7. In this module, find the FillOptions() procedure. Then, change the code
below
From
Const conNumButtons = 8
To
Const conNumButtons = 9
8. Compile and save the changes.
9. Now, you can add the ninth option directly to the “Switchboard Items” table.
Note: you are still not allowed to new the ninth switchboard item through
Switchboard Manager.
For example, if the record of “option 8” is:
SwitchboardID ItemNumber ItemText
18 commond 8
Then, add a new record like below:
SwitchboardID ItemNumber ItemText
1 9 commond 9
Save the changes.
10. Open Switchboard Manager, you will note the command 9 is in the switchboard
item list. Then, you can set the operation for the “commond 9” switchboard
item.
![]() |
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 |

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
-
WARNING about Nvidia driver version 572.83 and 4000/5000 series cards
by
Bob99
3 hours, 58 minutes ago -
Creating an Index in Word 365
by
CWBillow
4 hours, 4 minutes ago -
Coming at Word 365 and Table of Contents
by
CWBillow
4 hours, 9 minutes ago -
Windows 11 Insider Preview Build 22635.5170 (23H2) released to BETA
by
joep517
9 hours, 5 minutes ago -
Has the Microsoft Account Sharing Problem Been Fixed?
by
jknauth
12 hours, 30 minutes ago -
W11 24H2 – Susan Bradley
by
G Pickerell
14 hours, 26 minutes ago -
7 tips to get the most out of Windows 11
by
Alex5723
12 hours, 27 minutes ago -
Using Office apps with non-Microsoft cloud services
by
Peter Deegan
5 hours, 49 minutes ago -
I installed Windows 11 24H2
by
Will Fastie
4 hours, 8 minutes ago -
NotifyIcons — Put that System tray to work!
by
Deanna McElveen
17 hours, 53 minutes ago -
Decisions to be made before moving to Windows 11
by
Susan Bradley
55 minutes ago -
Port of Seattle says ransomware breach impacts 90,000 people
by
Nibbled To Death By Ducks
1 day, 2 hours ago -
Looking for personal finance software with budgeting capabilities
by
cellsee6
10 hours, 20 minutes ago -
ATT/Yahoo Secure Mail Key
by
Lil88reb
10 hours, 35 minutes ago -
Devices with apps using sprotect.sys driver might stop responding
by
Alex5723
1 day, 19 hours ago -
Neowin – 20 times computers embarrassed themselves with public BSODs and goofups
by
EP
2 days, 3 hours ago -
Slow Down in Windows 10 performance after March 2025 updates ??
by
arbrich
1 day, 6 hours ago -
Mail from certain domains not delivered to my outlook.com address
by
pumphouse
1 day, 12 hours ago -
Is data that is in OneDrive also taking up space on my computer?
by
WShollis1818
1 day, 22 hours ago -
Nvidia just fixed an AMD Linux bug
by
Alex5723
3 days, 14 hours ago -
50 years and counting
by
Susan Bradley
12 hours, 45 minutes ago -
Fix Bluetooth Device Failed to Delete in Windows Settings
by
Drcard:))
15 hours, 34 minutes ago -
Licensing and pricing updates for on-premises server products coming July 2025
by
Alex5723
4 days, 1 hour ago -
Edge : Deprecating window.external.getHostEnvironmentValue()
by
Alex5723
4 days, 1 hour ago -
Rethinking Extension Data Consent: Clarity, Consistency, and Control
by
Alex5723
4 days, 1 hour ago -
OneNote and MS Word 365
by
CWBillow
4 days, 3 hours ago -
Ultimate Mac Buyers Guide 2025: Which Mac is Right For You?
by
Alex5723
4 days, 3 hours ago -
Intel Unison support ends on Windows 11 in June
by
Alex5723
4 days, 3 hours ago -
April 2025 — still issues with AMD + 24H2
by
Kevin Jones
1 day, 19 hours ago -
Windows 11 Insider Preview build 26200.5518 released to DEV
by
joep517
4 days, 15 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.