-
WSR. Hicks
AskWoody LoungerMarch 21, 2002 at 6:02 pm in reply to: Access 97 Scroll Mouse Disabling Problem Solved!!! (Access 97) #577868The code originally posted, at the start of the original thread, works in Access 2000 … I have not tried it in Access 2002 yet but I suspect it will work in that verson also. It just will not work in Access 97.
RDH
-
WSR. Hicks
AskWoody LoungerHere is an added note to installing Office XP (2002) on a machine with Office 2000 already installed ……
I also have all 3 versions installed on my development machine.
You do not have to install Office/Access 2002(XP) in a seperate folder when Office/Access 2000 is already installed on the machine.
You simply choose to keep earlier versions and “XP” will create and install itself within subfolders in the same folder where Office 2000 resides. This scared me the first time I attemped this, but have done it many times since then with no problems.
RDH
-
WSR. Hicks
AskWoody LoungerI agree with Mark ……
Make sure you choose to install Office 2000 in a different folder (I use C:Program FilesMicrosoft Office2k).
Also make sure you choose to “keep older version” during setup.RDH
-
WSR. Hicks
AskWoody LoungerLet me just attach it to the post and save us all the trouble of emails.
I need to add code to the app to detect if the database you want to set the “ShiftKey” property has a password. Currently it will not set the property if it is password protected. I just can’t seem to find the time to alter the app. I built this application for my personal use, but you are welcome to use it and alter it in any way you see fit.
The version I attached will open in Access 2000 or 2002 but will set the property for Access 97 also.
RDH
-
WSR. Hicks
AskWoody LoungerI easiest and simpliest way is not to add the code to the app. Instead use a remote database designed specifically for this pupose. You keep a copy of this application on your development machine and you set and unset the shift key property “at will’. The app is small enough to fit on a diskette so you can set the property by using the diskette if you are away from your machine. If you would like a copy of this .. let me know and I will email you a copy. I assume you want the Access 2000/2002 version. I have an Access 97 version and Access 2000/20002 version.
HTH
RDH -
WSR. Hicks
AskWoody LoungerYou need to extract the Year from your stored Date entry using a “Field Expression”.
You then set up a prompt in the Criteria section of this field expression to get the user to enter the Year to filter the desired records.Here is an example of the field expression you need in your query:
TheYear: DatePart(“yyyy”,[YourDateField])
(change “YourDateField” to the name of the field that contains the Date data)Then in the Criteria section of the QBE grid of this added expression use something like this:
[Enter 4 digit Year]The above will prompt the user to enter the 4 digit year that you want to set as the criteria for the query.
HTH
RDH -
WSR. Hicks
AskWoody LoungerHmmmm ……..
I just took a look in my Access 2002 help and went right to FileCopy. It is in the VBA help files. To access it you must be in the VBA code window then cilck on help from that window. This is another one of Microsoft’s “Great Ideas” I guess …. You need help to work with the help files …. LOLRDH
-
WSR. Hicks
AskWoody LoungerActually you should be using “yyyy” as the “Interval” argument in the DateDiff function … not “y”.
The “y” argument returns the “Day of Year”.Here is an expression I always use:
DateDiff(“yyyy”, DOB, Date) + (Date < DateSerial(Year(Date), Month(DOB), Day(DOB)))
HTH
RDH -
WSR. Hicks
AskWoody LoungerHere is a sample routine that should work for you:
Public Sub BackUp()
On Error GoTo Err_Backup
Dim strMsg As String, strTitle As String
Dim strSource As String, strDest As String
Dim strError As StringstrMsgComplete = “The Backup of the Database was Sucessful.”
strTitleComplete = ” Backup Complete”BeginBackup:
-
WSR. Hicks
AskWoody LoungerAs long as the backup is performed from the frontend, from an unbound form with no bound forms open, you can use the “FileCopy” statement to copy the backend to another location.
HTH
RDH -
WSR. Hicks
AskWoody LoungerAttempting to replace the standard splash screen with a .bmp file on todays faster machines is a totally useless venture. As you have found, it appears and disappears too fast to read … and Access gives no control over this.
You need to create a custom form to be your splash screen (form). You then have this form open using the startup options or with an autoexec macro. You set the timer to open the next form and close the splash form based to the interval you set.
You also need to create (or use the one included in the attached file) a .bmp file to keep the standard splash screen from showing. The .bmp file must reside in the same folder as the database and the name of the .bmp must be the same name as the database but with the .bmp extension.
I have attached a small (zipped) sample that should should you how to do this. Place both files in a temporary folder then execute the opening of the sample database.
HTH
RDH -
WSR. Hicks
AskWoody LoungerFebruary 16, 2002 at 6:41 am in reply to: Turn off Command Menu Bar completely (Win2K, Access2K) #570826You are very welcome….
I was just hoping I understood the question …. LOL
RDH
-
WSR. Hicks
AskWoody LoungerFebruary 15, 2002 at 1:31 am in reply to: Turn off Command Menu Bar completely (Win2K, Access2K) #570506I hope I understand what menu you mean ……
This line will remove the Main Menu Bar
DoCmd.ShowToolbar “Menu Bar”, acToolbarNo
Just use “acToolbarYes” argument to make it appear again.
HTH
RDH -
WSR. Hicks
AskWoody LoungerThis may not be the problem …… but check the fonts that are being used in the reports. Are these fonts installed on the effected machines? If they are not Access will substitute a font for the missing font. This could result in the problem you describe.
HTH
RDH -
WSR. Hicks
AskWoody LoungerFebruary 7, 2002 at 11:50 pm in reply to: Format Date to only show Month, Day and year (2000) #569032I hope I understand the format you want:
In the “Format” property of the control put:
example: February 07, 2002
mmmm dd, yyyyIf this is not what you want … post an example of what you want.
HTH
RDH
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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
-
KB5058379 / KB 5061768 Failures
by
crown
2 minutes ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
6 minutes ago -
At last – installation of 24H2
by
Botswana12
1 hour, 27 minutes ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
36 seconds ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
11 hours, 55 minutes ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
5 hours, 15 minutes ago -
Limited account permission error related to Windows Update
by
gtd12345
1 day, 1 hour ago -
Another test post
by
gtd12345
1 day, 1 hour ago -
Connect to someone else computer
by
wadeer
19 hours, 54 minutes ago -
Limit on User names?
by
CWBillow
23 hours, 12 minutes ago -
Choose the right apps for traveling
by
Peter Deegan
12 hours, 55 minutes ago -
BitLocker rears its head
by
Susan Bradley
21 hours, 29 minutes ago -
Who are you? (2025 edition)
by
Will Fastie
39 minutes ago -
AskWoody at the computer museum, round two
by
Will Fastie
15 hours, 17 minutes ago -
A smarter, simpler Firefox address bar
by
Alex5723
1 day, 11 hours ago -
Woody
by
Scott
1 day, 21 hours ago -
24H2 has suppressed my favoured spider
by
Davidhs
20 hours, 35 minutes ago -
GeForce RTX 5060 in certain motherboards could experience blank screens
by
Alex5723
2 days, 11 hours ago -
MS Office 365 Home on MAC
by
MickIver
2 days, 5 hours ago -
Google’s Veo3 video generator. Before you ask: yes, everything is AI here
by
Alex5723
3 days, 1 hour ago -
Flash Drive Eject Error for Still In Use
by
J9438
19 minutes ago -
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
3 days, 20 hours ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
3 days, 20 hours ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
3 days ago -
Migrate off MS365 to Apple Products
by
dmt_3904
3 days ago -
Login screen icon
by
CWBillow
2 days, 15 hours ago -
AI coming to everything
by
Susan Bradley
5 hours, 45 minutes ago -
Mozilla : Pocket shuts down July 8, 2025, Fakespot shuts down on July 1, 2025
by
Alex5723
4 days, 12 hours ago -
No Screen TurnOff???
by
CWBillow
4 days, 12 hours ago -
Identify a dynamic range to then be used in another formula
by
BigDaddy07
4 days, 12 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.