Thanks Paul,
it works like you wrote:
let str = 'z:\brief.doc'
CALL ui.interface.frontCall("WinCOM", "CallMethod", [wwapp, "Documents.Open", str], [wwdoc])
but the Method "Documents.Open" has more Parameter. A complete VBA-Statement looks
is f.e.:
ChangeFileOpenDirectory "Z:\"
Documents.Open FileName:="brief.doc", ConfirmConversions:=False, ReadOnly _
:=False, AddToRecentFiles:=False, PasswordDocument:="", PasswordTemplate _
:="", Revert:=False, WritePasswordDocument:="", WritePasswordTemplate:="" _
, Format:=wdOpenFormatAuto
How can I submit other Parameters to Word ??
The same Problem I have with the "goto" Statement
Goto a LineNumber 8 in VBA: Selection.GoTo What:=wdGoToLine, Which:=wdGoToFirst, Count:=8, Name:=""
Goto a BookMark plz_ort: Selection.GoTo What:=wdGoToBookmark, Name:="plz_ort"
Thanks Stefan