Hi,
This may be one of the silly ones…
Would anyone know, if it is possible to get an error message to display, in eg. a variable, both the name of the module and the name of the procedure that caused the error… ??
Thanks,
;o)) Henrik
![]() |
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 |
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Error messages (VBA generally (my is O2K, UK))
There is no standard feature in VBA to do what you want. You can create your own error handling, or use a utility for this. Office Developer Edition has an add-in for creating error handlers, and you can also use MZ Tools for this (free).
Home-grown error handling could look like this:
(in a module basUtilities)
Sub MyProcedure()
On Error GoTo ErrHandler
… ‘ Your code here
ExitHandler:
‘ Cleaning up here
Exit Sub
ErrHandler:
MsgBox Err.Description, vbExclamation, “basUtilities – MyProcedure”
Resume ExitHandler
End Sub
Thanks Hans,
Feared you would say this…
Having to add it as separate code does take a bit of the flexibility out of it. (Then I have to code modName and ProcedureName anyway – somewhere…)
What I had hoped for was to be able to do something like Err.Number & “:” & Err.Description & ” (” & Err.modName & “;” & Err.ProcName & “)”
– but apparently this is not a way forward – pitty though.
;o)) Henrik
Take a look at the EH procedure written by st3333ve in post 280572 – it is in the Access forum but should work in VBA in other apps too. You need to set a reference to Microsoft Visual Basic for Applications Extensibility 5.3 in Tools | References…
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.
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.
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.