-
WSTomG
AskWoody LoungerIn all their whining about Microsoft, I’ve noticed the Watch Archives pages were loaded with stuff that HTML Tidy Cleaned up, or Dreamweaver, when I ran the HTML through those tools. I was having an archived issue display problem, simply because of poorly written HTML. They usually do respond to reader feedback, and you might even get Woody himself.
FWIW
-
WSTomG
AskWoody LoungerGo here http://www.woodyswatch.com/windows/services.asp%5B/url%5D and click Reader Feedback, a much more appropriate place to contact Woody’s Watch.
FWIW
-
WSTomG
AskWoody LoungerWhat things can Wordbasic do that VBA can’t. Do you have specifics, or can you point me to a site that does?
TIA
-
WSTomG
AskWoody LoungerWendellB is correct, one should change the owner of a database and not leave Admin as the owner, for better security. For even better security, SQL Server is the way to go. But if you stick with a desktop database application, then by all means make sure you change the owner of the database, or create it with an account other than Admin to begin with.
FWIW
-
WSTomG
AskWoody LoungerForget the code for the Non Programmer:
For the Path use:
=Left([CurrentDb].[Name],InStr([CurrentDb].[Name],Dir([CurrentDb].[Name]))-1)
as the control source for a calculated field on a form.For the Name use:
=Dir([CurrentDb].[Name])
as the control source for a calculated field on a form.For the programmer:
Function getCurrentDBPath() As String
getCurrentDBPath = Left(CurrentDb.Name, InStr(CurrentDb.Name, Dir(CurrentDb.Name)) – 1)
End FunctionFunction getCurrentDBName()
getCurrentDBName = Dir(CurrentDb.Name)
End FunctionFWIW
-
WSTomG
AskWoody LoungerThis might be exactly what you are looking for. Check out this Freeware called SoftCat. http://www.fnprg.com/softcat/%5B/url%5D Not only is it free, but if you take a look at the Access database file used by the program, you’ll have a good set of tables on which you can base your own Software Inventory. You’ll want to add referential integrity, etc. but softcat is a good start for your own, or you may decide simply to use SoftCat.
FWIW
HTH -
WSTomG
AskWoody LoungerWhy not something simpler?
I’m assuming this is in your criteria you are talking about.
(Month([BirthdateField]) = Month(Date())) AND (Day([BirthdateField]) Between Day(Date()) and Day(Date())+10
Which Access will make into two calculated fields:
Month([BirthdateField])
Day([BirthdateField])
With Criteria for each.
Seems much simpler than using Format to me.
FWIW -
WSTomG
AskWoody LoungerThere’s also exactly what you asked for:
= [Last_name] & ( “, “+[First_Name])And it’s really not Tricky. The Plus sign says return Null if the First_Name field is blank. The Ampersand says to combine strings whether blank or not. So if you used an Ampersand and a First_Name was blank, you would get
Smith,
Instead of
SmithFWIW
-
WSTomG
AskWoody LoungerHello Mark, Harry, and Emilia!
Report_Open is actually not the only place you can set the record source of a report.
IF, I say IF this is something just for you and not for your end user(s) you can use a DoCmd.OpenReport to open the report in design view, set the RecordSource by using Reports(“yourReportName”).RecordSource=”RecordSourceString”, then issue the DoCmd.OpenReport in Preview (or Normal if you don’t care to check things out before sending to the printer).
The form method works nicely if you set your options on your form, then issue the DoCmd.OpenReport, and as has been discussed, have the on open event look at the form for the desired record source. you could even have code in the on open that checks if the form supplying the record source is open, and if not, cancel the opening of the report, etc.
Naturally you’ll be asked to save the changes to the report when you close it, but you can simply choose no.
FWIW and HTH
-
WSTomG
AskWoody LoungerNovember 20, 2001 at 10:11 pm in reply to: GAPING HOLE in Access User Level Security??? (Access 2000 SR-1A) #553397I didn’t mean any harsh tone in my post, as I re-read it I hope I didn’t come across that way.
I never use the Security Wizard. The Form and Report wizards do most of the work for me with forms and reports, but then I tweak them. When it comes to security I learn how to do it from scratch. Wizards are nice, but it’s almost silly to have something like that for security. A wizard in my opinion, gives the impression something is easier than it really is, and I avoid them whenever possible. I even manually change my switchboards by modifying the switchboard items table. Plus I can add all sorts of code the Switchboard Manager couldn’t handle.
I do in fact create a blank database logged on as whatever User I create for the owner of the database, and I import every object from my un-secured Access “development” database, into the newly created shell. This changes the owner to that account. That is one item often overlooked by folks new to Access Security.
I do know there are hacks out there you can download to get into a secured Access database. Depending on where you store the database, also, seriously don’t overlook a locked door, etc.
Nothing is totally “Secure” if someone wants to break in bad enough.
FWIW
-
WSTomG
AskWoody LoungerNovember 20, 2001 at 9:58 am in reply to: GAPING HOLE in Access User Level Security??? (Access 2000 SR-1A) #553162Listen to Charlotte and go to http://support.microsoft.com/support/acces…tent/secfaq.asp
Download http://download.microsoft.com/download/acc…N-US/Secfaq.exe
I’m guessing you didn’t change the owner of the database from Admin to another User. I’m guessing that doing so would have stopped you from being able to open the database when you replaced the built-in workgroup file.
I would read the Security FAQ carefully before claiming to find a gaping security hole. I’m assuming you’ve also got the database in a secure location. Don’t forget Access is a PC database not as Charlotte said, a database server like SQL Server.
-
WSTomG
AskWoody LoungerClearly vCalendar and vCard are for sending someone information, not for one’s own displaying in Outlook. Milly’s answer is fantastic.
-
WSTomG
AskWoody LoungerThe Check Names feature, while handy, still doesn’t search more than one address book once it finds a match. The first single match it finds in the current address book it is searching in, it makes that selection, then skips looking in other address books.
Outlook 2000 has Automatic Name Checking as an option that can be set to automatically Check Names. So you can type part of someone’s email address tab on down to subject, and usually it’s started filling in the addresses as you’re typing a subject.
-
WSTomG
AskWoody LoungerAutoRecover Files and Backup Files are two different things. Here’s what Word Help states about the “Always Create Backup Copy” option found in Tools | Options | Save
“Copies the previous version of a document as a backup copy every time you save a document. Each new backup copy replaces the previous backup copy. Word saves the backup copy (with a file name extension .WBK) in the same folder as the original. When you select Always create backup copy, Word clears the Allow fast saves check box because Word can create backup copies only when it performs a full save.
This is by design, and there isn’t a setting for this in File Locations, that’s the setting for AutoRecover Files, again, a different feature than the backup files.
-
WSTomG
AskWoody LoungerI believe what deseree is talking about is the Description for a macro, found when you go to Tools | Macro | Macros, not comments in VBA.
The answer would then be, go to Tools | Macro | Macros, then select the macro name for which you would like to change the description, and simply type in a different description in the box.
I would definitely keep people out of the VBA unless absolutely necessary.
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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
-
Win 10 22H2 November patches: Why do I have these 4 Windows App Runtime apps?
by
WCHS
1 hour, 20 minutes ago -
KB5032278
by
fpefpe
1 hour, 49 minutes ago -
A web browser security testing & privacy testing tool.
by
TechTango
6 hours, 59 minutes ago -
IOS 17.1.2 looses text alert tone
by
J9438
8 hours, 41 minutes ago -
What to know about CentOS Linux EOL
by
Alex5723
13 hours, 40 minutes ago -
ESU announcement coming?
by
Susan Bradley
3 hours, 23 minutes ago -
December 2023 Office non-Security Updates
by
PKCano
7 hours, 48 minutes ago -
Widespread Printer Bug caused by Windows Store!
by
Intrepid
15 hours, 31 minutes ago -
Xbox question
by
fernlady
14 hours, 53 minutes ago -
Unfound Updates
by
rebop2020
11 hours, 34 minutes ago -
Thieves rob DC Uber Eats driver, reject Android phone for not being iPhone
by
Alex5723
13 hours, 8 minutes ago -
McAfee popup add (from micro. Store)
by
Robin Heckler
14 hours, 30 minutes ago -
Random Screen Shut Downs (Windows 11 Pro)
by
OkCarl
1 day, 2 hours ago -
CPU performance degradation after 23H2 update
by
Alex5723
1 day, 2 hours ago -
PDFgear
by
Alex5723
1 day, 2 hours ago -
I’m getting a new computer. I need instructions on setting it up CORRECTLY
by
Sly McNasty
16 hours, 32 minutes ago -
Microsoft will not activate a valid reinstall of Office 16
by
TomK
10 hours, 49 minutes ago -
Dell laptop Win 11 BLACK screen!
by
WSpfeldmann
48 minutes ago -
Firefox change from French to English.
by
DaveBRenn
13 hours, 19 minutes ago -
W10 22H2 Nov 2023 PT Update: No monsters here
by
Rob Kay
1 day, 2 hours ago -
Windows : Is This the End of ‘Intel Inside’ ?
by
Alex5723
1 day, 6 hours ago -
windows 10 upgrade to 11
by
ken
1 day, 10 hours ago -
WIN10 over 2 hours to boot
by
qaz
17 hours, 39 minutes ago -
How to do a Windows 11 repair install
by
Susan Bradley
4 hours, 4 minutes ago -
Ignore Susan Bradley’s Patch Watch at your peril
by
B. Livingston
20 hours, 8 minutes ago -
Tmas Greetings!
by
Max Stul Oppenheimer
1 day, 3 hours ago -
Microsoft Photos, Photos Legacy, and Windows 10
by
Ed Tittel
5 hours, 17 minutes ago -
Hardening your operating system
by
Susan Bradley
1 day, 3 hours ago -
Progress blocking browser fingerprinting, tracking ads and invisible trackers.
by
TechTango
12 hours, 31 minutes ago -
TeraCopy updates
by
Alex5723
2 days, 1 hour ago
Recent blog posts
- December 2023 Office non-Security Updates
- How to do a Windows 11 repair install
- Ignore Susan Bradley’s Patch Watch at your peril
- Tmas Greetings!
- Microsoft Photos, Photos Legacy, and Windows 10
- Hardening your operating system
- Permanent posts for blocking Copilot
- Apple zero days fixed – November 30, 2023
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-2023 by AskWoody Tech LLC. All Rights Reserved.