It's possible by using this code (you must add a reference to the 'Microsoft Access Object library')
Code:
Dim appAccess As Access.Application
' Open Access
Set appAccess = CreateObject("Access.Application")
' Make Access visible
appAccess.Visible = True
' Open your database
appAccess.OpenCurrentDatabase "MyPathAndDBName"
appAccess.Run "MyFunctionName" ' Only a function, not a sub
appAccess.DoCmd.RunMacro "MyMacroName"
' Close your Database
appAccess.CloseCurrentDatabase
' Close Access
appAccess.Quit
Set appAccess = Nothing
I think that Only the MSACC8.OLB (if you use Access97) must be on the client PC