Hallo,
wie ist es Möglich, eine Word-Datei über ein VBScript zu öffnen?? Wie man Wörd öffnet weiß ich schon. mir fehlt nur noch deer Befehl zum öffnen einer Word-datei und wie man den Inhalt kopieren kann. Danke schon mal für eure Antworten
Gruß Aggro
Hier mein bisheriger Quelltext:
Set appWord = CreateObject("Word.Application")
appWord.WindowState = 0
appWord.Height = 600
appWord.Width = 800
appWord.Left = 40
appWord.Top = 20
appWord.Visible = True \' Display the application.
Programmieren - alles kontrollieren 4.941 Themen, 20.708 Beiträge
Ändere folgende Zeile:
'Öffne Word-Dokument
appWord.Documents.Open "C:\Dokumente und Einstellungen\b600806\Desktop\http.doc"
mal so ab:
'Öffne Word-Dokument
Dim wrdDoc
Set wrdDoc = appWord.Documents.Open("C:\Dokumente und Einstellungen\b600806\Desktop\http.doc")
Laut Hilfe kannst Du das Dokument so senden:
appWord.Options.SendMailAttach = True
Call wrdDoc.SendMail
Vergiß nicht, den Verweis wieder zu entfernen:
'Schließe Worddokument
Call wrdDoc.Close(-1)
Set wrdDoc = Nothing
Call appWord.Quit(-1)
Set appWord = Nothing