Hi,
I would like to calculate a file’s MD5 hash/checksum using a VBA procedure in MS Access without needing a DLL or other library (which I would have to distribute with the database, and I would like to keep it as simple for the users as possible)…
Is this possible?
Hasse
![]() |
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 |
-
Calculating a file's MD5 hash/checksum in VBA?
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Calculating a file's MD5 hash/checksum in VBA?
- This topic has 4 replies, 2 voices, and was last updated 16 years, 3 months ago.
AuthorTopicWShasse
AskWoody LoungerFebruary 28, 2009 at 6:46 pm #457909Viewing 0 reply threadsAuthorReplies-
WSHansV
AskWoody LoungerFebruary 28, 2009 at 6:58 pm #1149552Does MD5 for Visual Basic (VB) do what you want?
-
WShasse
AskWoody LoungerMarch 1, 2009 at 8:50 pm #1149633Does MD5 for Visual Basic (VB) do what you want?
Thanks Hans! Yes it does
.
Now… next problem: unfortunately it’s too slow for large files, yields an error with a ‘regular’ file,…
So (before spending time figuring out workarounds & debugging) I tried using the Shell function & a small freeware MD5 generator of DiamondCS (page includes screenshot).
I put this generator in the same folder along with my database… and ‘run’ it with these lines (in order to yield the hash for a file called plan.htm which resides in the same folder too):Code:Private Sub MD5_Click() Dim str As String str = Shell(CurrentProject.Path & "md5.exe " & CurrentProject.Path & "plan.htm") MsgBox str end Sub
The MgsBox returns a (every time different) number instead of the hash string.
Is my Shell command wrong? Or is there something else wrong here? (Or should I contact the creator of this tool?)
I feel pretty much like a greeny…
Hasse -
WSHansV
AskWoody LoungerMarch 1, 2009 at 9:03 pm #1149635The result of Shell is not the return value of the application that you start, but its TaskID, i.e. the number that Windows uses to identify it.
You could write the return value to a text file, then open the text file. The following is air code:Dim f As Integer
Dim strLine As String
Shell “cmd /c ” & Chr(34) & CurrentProject.Path & “md5.exe ” & _
CurrentProject.Path & “plan.htm > ” & CurrentProject.Path& “temp.txt” & Chr(34)
f = FreeFile
Open CurrentProject.Path& “temp.txt” For Input As #f
Line Input #f, strLine
Close #f
Kill CurrentProject.Path& “temp.txt”
‘ strLine should now contain the MD5 value -
WShasse
AskWoody Lounger
-
-
-
Viewing 0 reply threads -

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
-
I set up passkeys for my Microsoft account
by
Lance Whitney
3 hours, 52 minutes ago -
AI is for everyone
by
Peter Deegan
3 hours, 53 minutes ago -
Terabyte update 2025
by
Will Fastie
3 hours, 55 minutes ago -
Migrating from Windows 10 to Windows 11
by
Susan Bradley
4 hours, 15 minutes ago -
Lost sound after the upgrade to 24H2?
by
Susan Bradley
13 hours, 57 minutes ago -
How to move 10GB of data in C:\ProgramData\Package Cache ?
by
Alex5723
2 hours, 27 minutes ago -
Plugged in 24-7
by
CWBillow
22 hours, 14 minutes ago -
Netflix, Apple, BofA websites hijacked with fake help-desk numbers
by
Nibbled To Death By Ducks
1 day, 3 hours ago -
Have Copilot there but not taking over the screen in Word
by
CWBillow
1 day ago -
Windows 11 blocks Chrome 137.0.7151.68, 137.0.7151.69
by
Alex5723
2 days, 18 hours ago -
Are Macs immune?
by
Susan Bradley
16 hours, 17 minutes ago -
HP Envy and the Function keys
by
CWBillow
2 days, 1 hour ago -
Microsoft : Removal of unwanted drivers from Windows Update
by
Alex5723
5 hours, 48 minutes ago -
MacOS 26 beta 1 dropped support for Firewire 400/800
by
Alex5723
3 days, 5 hours ago -
Unable to update to version 22h2
by
04om
14 hours ago -
Windows 11 Insider Preview Build 26100.4482 (24H2) released to Release Preview
by
joep517
3 days, 13 hours ago -
Windows 11 Insider Preview build 27881 released to Canary
by
joep517
3 days, 13 hours ago -
Very Quarrelsome Taskbar!
by
CWBillow
2 days, 23 hours ago -
Move OneNote Notebook OFF OneDrive and make it local
by
CWBillow
4 days, 2 hours ago -
Microsoft 365 to block file access via legacy auth protocols by default
by
Alex5723
3 days, 15 hours ago -
Is your battery draining?
by
Susan Bradley
14 hours, 38 minutes ago -
The 16-billion-record data breach that no one’s ever heard of
by
Alex5723
14 hours, 38 minutes ago -
Weasel Words Rule Too Many Data Breach Notifications
by
Nibbled To Death By Ducks
4 days, 6 hours ago -
Windows Command Prompt and Powershell will not open as Administrator
by
Gordski
8 hours, 23 minutes ago -
Intel Management Engine (Intel ME) Security Issue
by
PL1
3 days, 14 hours ago -
Old Geek Forced to Update. Buy a Win 11 PC? Yikes! How do I cope?
by
RonE22
3 days, 7 hours ago -
National scam day
by
Susan Bradley
2 days, 13 hours ago -
macOS Tahoe 26 the end of the road for Intel Macs, OCLP, Hackintosh
by
Alex5723
3 days, 10 hours ago -
Cyberattack on some Washington Post journalists’ email accounts
by
Bob99
5 days, 7 hours ago -
Tools to support internet discussions
by
Kathy Stevens
3 days, 19 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.