Programmieren - alles kontrollieren 4.934 Themen, 20.613 Beiträge

Mit einem VBScript eine Word-Datei öffnen

aggroberlin / 28 Antworten / Flachansicht Nickles

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.

bei Antwort benachrichtigen
aggroberlin Nachtrag zu: „Mit einem VBScript eine Word-Datei öffnen“
Optionen

Es tut mir leid und ich weiß auch das ich anfange zu nerven, aber das funktioniert immer noch nicht. ich bekomme weiter eine leere E-Mail zugeschickt :-(( Bitte Hilf mir. Danke schon mal im vorhinaus. Den Befehl AddAttachment habe ich bei "objSendMail.HTMLBody = AddAttachment" eingefügt war das von dir auch so gemeint?




'Ö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 = "m.heinrich@krz.de"
Set objSendMail = CreateObject("CDO.Message")
objSendMail.Subject = "Test"
objSendMail.From = "m.heinrich@krz.de"
objSendMail.To = "m.heinrich@krz.de"
objSendMail.HTMLBody = AddAttachment
objSendMail.send

'Schließe Worddukument
appWord.Quit wdSaveChanges

bei Antwort benachrichtigen
nein thomas woelfer
tippfehler thomas woelfer
davon ab... thomas woelfer