Hallo Stefan! So ein ähnliches Problem hatte ich erst auch. Ich wollte auch Word direkt über ASP starten, bin aber mit der Word.Application auf keinen grünen Zweig gekommen... Ich habe mir dann mit dem FSO ein RTF-File erzeugt und es als .doc Datei abgespeichert. Eine sehr umfassende Referenz findet man in der MSDN!
Hier ein Code-Ausschnitt: <% Dim sRTF, sFileName PFAD = Server.MapPath(".") 'Create the file for the RTF Dim fso, MyFile Set fso = CreateObject("Scripting.FileSystemObject") sFileName = test.doc" Set MyFile = fso.CreateTextFile(PFAD & "\" & sFileName, True) MyFile.WriteLine("{\rtf1") 'Write the font table sRTF = "{\fonttbl {\f0\froman\fcharset0 Times New Roman;}" & _ "{\f1\fswiss\fcharset0 Tahoma;}" & _ "{\f2\fmodern\fcharset0 Courier New;}}" MyFile.WriteLine sRTF 'Write the title and author for the document properties MyFile.WriteLine("{\info{\title test vom " & date() & "}" & _ "{\author Ralf}" & _ "{\subject test vom " & date() & "}}") etc. 'close the RTF string and file MyFile.WriteLine("}") MyFile.Close %> MFG Ralf P.S. Falls du das file nicht selber schreiben möchtest lad irgendeinen DOC To RTF- Converter herunter. ~~~~~~~~~~~~~~~~~~~~~~~~~~~sponsored by United Planet~~~~~~~~~~~~~~~~~ Ein flexibles CMS für lau? ATTACK! Download Intrexx CRM-Studio Now! http://www.intrexx.com _______________________________________________ Advanced.asp mailing list [EMAIL PROTECTED] http://www.glengamoi.com/mailman/listinfo/advanced.asp