Beispiel 1 /* Launch Word and write the sentence „Um 9 Uhr Vorlesung ist viel zu früh“ */ sentence = 'Um 9 Uhr Vorlesung ist viel zu früh' word = 'WINWORD.EXE' call RxFuncAdd 'ShellExecute', 'USER32', 'ShellExecute' ShellExecute(0, 'open', word, '', '', 1) oWord = .oleobject~new('Word.Application') oDoc = oWord~Documents~Add() oWord~Visible = .true oSelection = oWord~Selection oSelection~TypeText(Um 9 Uhr Vorlesung ist viel zu früh) oDoc~SaveAs('C:\Documents\Test1.docx') oDoc~Close() oWord~Quit() say 'Launched Word and wrote the sentence:' Um 9 Uhr Vorlesung ist viel zu früh Beispiel 2 /* Launch PowerPoint and open a presentation file */ pptfile = 'C:\Documents\Projektideen.pptx' /* Path and name of presentation file */ call RxFuncAdd 'ShellExecute', 'USER32', 'ShellExecute' ShellExecute(0, 'open', 'POWERPNT.EXE', Projektideen.pptx, '', 1) say 'Launched PowerPoint and opened' Projektideen.pptx