> Let's have a re-think. Where exactly are you storing these documents? I can
> see they are in a folder called parade, but where are your storing this
[quoted text clipped - 126 lines]
> >>>>>>>>>> word.dco? It opens with word ok. I am useing office 2000.
> >>>>>>>>>> Thanks
Your choice of a sub folder from the desktop makes the coding required to
obtain the true path rather more complicated, but after doing some digging
on the web, the following does the trick:
Option Explicit
Private Const CSIDL_DESKTOP = &H0
Private Type SHITEMID
cb As Long
abID As Byte
End Type
Private Type ITEMIDLIST
mkid As SHITEMID
End Type
Private Declare Function SHGetSpecialFolderLocation Lib "shell32.dll" _
(ByVal hwndOwner As Long, ByVal nFolder As Long, pidl As ITEMIDLIST) As
Long
Private Declare Function SHGetPathFromIDList Lib "shell32.dll" Alias _
"SHGetPathFromIDListA" (ByVal pidl As Long, ByVal pszPath As String) As
Long
Private Function GetSpecialfolder(CSIDL As Long) As String
Dim r As Long, Path$
Dim IDL As ITEMIDLIST
'Get the special folder
r = SHGetSpecialFolderLocation(100, CSIDL, IDL)
If r = 0 Then
'Create a buffer
Path$ = Space$(512)
'Get the path from the IDList
r = SHGetPathFromIDList(ByVal IDL.mkid.cb, ByVal Path$)
'Remove the unnecessary chr$(0)'s
GetSpecialfolder = Left$(Path, InStr(Path, Chr$(0)) - 1)
Exit Function
End If
GetSpecialfolder = ""
End Function
Sub Test()
Word.Documents.Open (GetSpecialfolder(CSIDL_DESKTOP) & "\parade\yearly.doc")
Word.Documents.Open (GetSpecialfolder(CSIDL_DESKTOP) &
"\parade\yearlya.doc")
End Sub
I take no credit for the producing the code.

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> All files for program are in a folder on the desktop called (Parade)
> path from properties of folder is C:\Documents and Settings\Curtiss A.
[quoted text clipped - 155 lines]
>>>>>>>>>>>> reconizable word.dco? It opens with word ok. I am useing
>>>>>>>>>>>> office 2000. Thanks
Curt - 01 Dec 2007 18:25 GMT
Will get back when I have time to try this
You knew where and what to look for as I did not.
Thank You
> Your choice of a sub folder from the desktop makes the coding required to
> obtain the true path rather more complicated, but after doing some digging
[quoted text clipped - 201 lines]
> >>>>>>>>>>>> reconizable word.dco? It opens with word ok. I am useing
> >>>>>>>>>>>> office 2000. Thanks