Programmieren - alles kontrollieren 4.941 Themen, 20.708 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
nein thomas woelfer
T-Rex aggroberlin „ objSendMail.AddAttachmen HierKommtDannderPfadInAnfuehrungszeichen Es kommt die...“
Optionen
'Öffne Word-Anwendung
Dim appWord
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
Dim wrdDoc
Set wrdDoc = appWord.Documents.Open("C:\Dokumente und Einstellungen\b600806\Desktop\http.doc")

appWord.Options.SendMail = True
Call wrdDoc.SendMail

'Schließe Worddukument
Call wrdDoc.Close(-1)
Set wrdDoc = Nothing
Call appWord.Quit(-1)
Set appWord = Nothing
 GrüßeT-Rex 
bei Antwort benachrichtigen
tippfehler thomas woelfer
davon ab... thomas woelfer