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.935 Themen, 20.621 Beiträge
Hallo,
ich habe mir gerade noch mal den Quelltext angeschaut und bin mir nicht sicher, ob das so richtig ist! Funktionieren tut alles wunderbar, nur bekomme ich nun eine E-Mail ohne Inhalt zugeschickt.
!!!Schon mal danke für eure Hilfe!!!
Hier mein Quelltext
'Öffne Wörd-Anwendung
Set appWord = CreateObject("Word.Application")
appWord.WindowState = 0
appWord.Height = 600
appWord.Width = 800
appWord.Left = 40
appWord.Top = 20
appWord.Visible = True
'Öffne Word-Dokument
appWord.Documents.Open "C:\Dokumente und Einstellungen\b600806\Desktop\http.doc"
'öffne E-Mail und sende Sie Anschließend
emailHere = "test@test.de"
Set objSendMail = CreateObject("CDO.Message")
objSendMail.Subject = "Test"
objSendMail.From = "test"
objSendMail.To = "test@test.de"
objSendMail.HTMLBody = "body text."
objSendMail.send
'Schließe Worddukument
appWord.Quit wdSaveChanges