
I figured it out!
I found another example, on msdn under the Find object:
Set myRange = ActiveDocument.Content
myRange.Find.Execute FindText:="hi", ReplaceWith:="hello", _
Replace:=wdReplaceAll
And with some effort I came to:
oWORD = ObjectOpen("Word.Application")
oDOCS = oWORD.Documents
oDOC = oDOCS.Open("test.doc")
oWORD.visible=@true
oActiveDoc = oWORD.activedocument
; Word Constants
wdReplaceNone = 0
wdReplaceOne = 1
wdReplaceAll = 2
myRange = oActiveDoc.Content
myRange.Find.Execute(:: FindText="@adres@", ReplaceWith="test", Replace=wdReplaceAll)
etc
And it works !
