Hi iam creating a Word document like:
Dim oApp As Word.Application
Dim oDoc As Word.Document
oApp = CreateObject("Word.Application")
oDoc = oApp.Documents.Add
Dim rng As Word.Range = oDoc.Range(0, 0)
rng.Font.Name = "Verdana"
rng.Font.Size = 16
.......
...............
oApp.Visible = True
oDoc = Nothing
oApp = Nothing
This works perfect on my local machine. But if i put my Code on Webserver it of course does not work.
My Question is: What i have to do, that the Word document gets created on the server and offer the created document to the client as Download.
Can someone help me with that? Thanks!!