Hi Farooq,
The code below will find the first occurrence, then shut down Word. Just
change sText and sDoc to your own ones.
Private Sub CommandButton1_Click()
Dim sText As String, sDoc as String
Dim wordApp As Object
sText = "Find this"
sDoc="C:\Temp\A Document.doc"
Set wordApp = CreateObject("Word.Application")
With wordApp
.Visible = True
.Documents.Open (sDoc)
With .Selection.Find
.Text = sString
.Execute Forward:=True
End With
.Quit
End With
Set wordApp = Nothing
End Sub

Signature
Work performed in the spirit of service is worship...Baha'i Writings
> Greetings,
>
[quoted text clipped - 8 lines]
>
> Farooq Sheri
Farooq Sheri - 27 Jan 2006 04:53 GMT
Hi Ian,
Thanks for your help. The word document opens but it also closes in a blink
of an eye. Perhaps if we can have a sequence built in where the user
interaction is required to find the next value in the word document and to
finally close the word document (I do not know if it is possible or not but
perhaps after once the Word doc opens, a macro within should Word take over.
After the user has finished finding the required string the word macro should
close and the excel macro should then take over; just a thought).
Thanks again.
> Hi Farooq,
>
[quoted text clipped - 32 lines]
> >
> > Farooq Sheri