Torgeir, from your macro example, I created a
simple function:
====================================
Public Function GetDfltEmailClient() As String
Dim objShell As Object
Set objShell = CreateObject("WScript.Shell")
GetDfltEmailClient = objShell.RegRead("HKLM\SOFTWARE\Clients\Mail\")
End Function
====================================
I've posted elsewhere a question relating to the down-side
of coding with a dependency on the Script Host, as I can't
guarantee exactly where the code might run. It's not likely
that anything older than a 98SE with Office2000 system
would be encountered, but I'd like the experience of other
major Access users.
Thanks again for your thoughts and suggestions.