Hi,

I can't explain what's going on with your colleague's computer, but why don't you use Application.Path to get the path for Excel.exe?

VB Code:
  1. Sub Test()
  2.     Debug.Print Application.Path
  3. End Sub

It's much quicker this way.

Here's some documentation:
http://msdn2.microsoft.com/en-us/lib...fice.11).aspx#

HTH