-
WSAndrew77
AskWoody LoungerThanks, Kevin
FYI:
From “VB & VBA in a Nutshell”
[indent]
In stripping the “file extension” and returning the base name of Path, GetBaseName has no intelligence. That is, it doesn’t know whether the last component of Path is a path or a filename. If the last component includes one or more dots, it simply removes the last one, along with any following text. Hence, GetBaseName returns a null string for a Path of “.” and it returns “.” for a Path of “..”. It is, in other words, really a string manipulation function, rather than a file function.
[/indent]
-
WSAndrew77
AskWoody LoungerThanks, Kevin
FYI:
From “VB & VBA in a Nutshell”
[indent]
In stripping the “file extension” and returning the base name of Path, GetBaseName has no intelligence. That is, it doesn’t know whether the last component of Path is a path or a filename. If the last component includes one or more dots, it simply removes the last one, along with any following text. Hence, GetBaseName returns a null string for a Path of “.” and it returns “.” for a Path of “..”. It is, in other words, really a string manipulation function, rather than a file function.
[/indent]
-
WSAndrew77
AskWoody LoungerI don’t have access to Word 97 right now to check for sure (it’s at home), but I’m almost certain it supported style aliases.
Here’s a link to info on the binary file format for Word 97, and it specifically mentions style aliases.
http://www-aix.gsi.de/~bio/DOCS/wword8.html%5B/url%5D
But I could certainly be mistaken.
-
WSAndrew77
AskWoody LoungerI don’t have access to Word 97 right now to check for sure (it’s at home), but I’m almost certain it supported style aliases.
Here’s a link to info on the binary file format for Word 97, and it specifically mentions style aliases.
http://www-aix.gsi.de/~bio/DOCS/wword8.html%5B/url%5D
But I could certainly be mistaken.
-
WSAndrew77
AskWoody LoungerHi Andrew,
Yeah, I’d tried using the Index property, but it doesn’t account for letters or roman numerals used as references, or for restarting over sections.
-
WSAndrew77
AskWoody LoungerHi Andrew,
Yeah, I’d tried using the Index property, but it doesn’t account for letters or roman numerals used as references, or for restarting over sections.
-
WSAndrew77
AskWoody LoungerHi Mark,
Yeah, that’s correct. The Application object is not part of VB, it comes from the hosted application. That particluar function came from some code I used in a Word template that was to be run on Windows and Mac. My bad.
Maybe a better choice would be to provide the path separator as an argument to the function:
Function GetFileName(sPath As String, sSeparator As String) As String GetFileName = Right$(sPath, (Len(sPath) - (InStrRev(sPath, sSeparator)))) End Function
That would provide a more generally usable function that might come in handy when parsing a URL, etc.
-
WSAndrew77
AskWoody LoungerHi Mark,
Yeah, that’s correct. The Application object is not part of VB, it comes from the hosted application. That particluar function came from some code I used in a Word template that was to be run on Windows and Mac. My bad.
Maybe a better choice would be to provide the path separator as an argument to the function:
Function GetFileName(sPath As String, sSeparator As String) As String GetFileName = Right$(sPath, (Len(sPath) - (InStrRev(sPath, sSeparator)))) End Function
That would provide a more generally usable function that might come in handy when parsing a URL, etc.
-
WSAndrew77
AskWoody Lounger -
WSAndrew77
AskWoody Lounger -
WSAndrew77
AskWoody LoungerHi Dave,
Here’s an alternate, platform-independent way to get the filename without the separator:
Function GetFileName(sPath As String) As String GetFileName = Right$(sPath, (Len(sPath) - (InStrRev(sPath, Application.PathSeparator)))) End Function
Six of one, half dozen of the other …
-
WSAndrew77
AskWoody LoungerHi Dave,
Here’s an alternate, platform-independent way to get the filename without the separator:
Function GetFileName(sPath As String) As String GetFileName = Right$(sPath, (Len(sPath) - (InStrRev(sPath, Application.PathSeparator)))) End Function
Six of one, half dozen of the other …
-
WSAndrew77
AskWoody LoungerI agree with Andrew that it would probably be easier to just merge the client’s stuff with your own template, using the built in styles based on the client’s, using aliases.
Obviously you don’t want to return the files to them that way, but here’s a way around that. Say you’ve put the client’s document into your own template, which has, as Andrew suggested, styles like “Heading 1, DW$_Heading 1”. Now, if you try to rename that style to strip out the “Heading 1”, Word (or VBA) won’t complain, but they won’t let you do it, either.
But … if you save the file as RTF, and open it up in a text editor, you can pretty easily locate the style table and the definition for “Heading 1, DW$_Heading 1”. Delete the “Heading 1,” part. When you re-open the file in Word, Word will re-generate an actual Heading 1 style, but leave yours intact, with all the formatting.
I don’t know the complexity of your documents, and I certainly can’t promise this will work without any problems, but if the strategy works for you, it’s the kind of thing that could be implemented pretty easily in Perl (from start to finish — opening the Word files, saving them as RTF, making the substitution, and opening them back up in Word). Then again, this client may not be worth the trouble.
-
WSAndrew77
AskWoody LoungerI agree with Andrew that it would probably be easier to just merge the client’s stuff with your own template, using the built in styles based on the client’s, using aliases.
Obviously you don’t want to return the files to them that way, but here’s a way around that. Say you’ve put the client’s document into your own template, which has, as Andrew suggested, styles like “Heading 1, DW$_Heading 1”. Now, if you try to rename that style to strip out the “Heading 1”, Word (or VBA) won’t complain, but they won’t let you do it, either.
But … if you save the file as RTF, and open it up in a text editor, you can pretty easily locate the style table and the definition for “Heading 1, DW$_Heading 1”. Delete the “Heading 1,” part. When you re-open the file in Word, Word will re-generate an actual Heading 1 style, but leave yours intact, with all the formatting.
I don’t know the complexity of your documents, and I certainly can’t promise this will work without any problems, but if the strategy works for you, it’s the kind of thing that could be implemented pretty easily in Perl (from start to finish — opening the Word files, saving them as RTF, making the substitution, and opening them back up in Word). Then again, this client may not be worth the trouble.
-
WSAndrew77
AskWoody LoungerI don’t think Word is the right tool for this. What happens if the recipient downloads the survey you’ve attached, and then reads it from her laptop on the train home? Do you expect her to remember to send back the survey the next time she’s online?
How about putting your survey online and sending a link?
If you could be certain that the recipients used Outlook, you could conceivably code a macro button that placed the document as an attachment in their Outbox.
But I still think Word’s the wrong tool for the job.
Just my two cents.
![]() |
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
-
Neowin – 20 times computers embarrassed themselves with public BSODs and goofups
by
EP
1 hour, 11 minutes ago -
Slow Down in Windows 10 performance after March 2025 updates ??
by
arbrich
7 hours, 35 minutes ago -
Mail from certain domains not delivered to my outlook.com address
by
pumphouse
10 hours, 1 minute ago -
Is data that is in OneDrive also taking up space on my computer?
by
WShollis1818
17 hours, 41 minutes ago -
Nvidia just fixed an AMD Linux bug
by
Alex5723
1 day, 11 hours ago -
50 years and counting
by
Susan Bradley
9 hours, 19 minutes ago -
Fix Bluetooth Device Failed to Delete in Windows Settings
by
Drcard:))
18 hours, 39 minutes ago -
Licensing and pricing updates for on-premises server products coming July 2025
by
Alex5723
1 day, 22 hours ago -
Edge : Deprecating window.external.getHostEnvironmentValue()
by
Alex5723
1 day, 23 hours ago -
Rethinking Extension Data Consent: Clarity, Consistency, and Control
by
Alex5723
1 day, 23 hours ago -
OneNote and MS Word 365
by
CWBillow
2 days ago -
Ultimate Mac Buyers Guide 2025: Which Mac is Right For You?
by
Alex5723
2 days, 1 hour ago -
Intel Unison support ends on Windows 11 in June
by
Alex5723
2 days, 1 hour ago -
April 2025 — still issues with AMD + 24H2
by
Kevin Jones
2 days, 1 hour ago -
Windows 11 Insider Preview build 26200.5518 released to DEV
by
joep517
2 days, 13 hours ago -
Windows 11 Insider Preview build 26120.3671 (24H2) released to BETA
by
joep517
2 days, 13 hours ago -
Forcing(or trying to) save Local Documents to OneDrive
by
PateWilliam
2 days, 21 hours ago -
Hotpatch for Windows client now available (Enterprise)
by
Alex5723
2 days, 9 hours ago -
MS-DEFCON 2: Seven months and counting
by
Susan Bradley
1 day, 10 hours ago -
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
3 days, 6 hours ago -
Apple backports fixes
by
Susan Bradley
2 days, 13 hours ago -
Win 11 24H2 will not install
by
Michael1950
1 day, 11 hours ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
4 hours, 48 minutes ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
1 day, 19 hours ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
7 hours, 17 minutes ago -
Get back ” Open With” in context menus
by
CWBillow
3 days, 21 hours ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
2 days, 13 hours ago -
simple general stupid question
by
WSaltamirano
3 days, 19 hours ago -
April 2025 Office non-Security updates
by
PKCano
4 days, 12 hours ago -
Microsoft wants to hear from you
by
Will Fastie
2 days, 3 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.