Microsoft.Office.Interop.Word
HejJeg har lavet en applikation der åbner word, genererer et dokument og derefter lukker Word, men efter at have published applikationen, får jeg flg. fejl:
"Denne assembly tillader ikke kaldere med delvis tillid"
Min kode er flg:
Imports word = Microsoft.Office.Interop.Word
Sub GenererDokument
Dim oWord As word.Application
Dim oDoc As word.Document
Dim Filnavn As String = "D:\Skabelon.dot"
oWord = CType(CreateObject("Word.Application"), word.Application)
oWord.Documents.Add(CObj(Filnavn))
oDoc = oWord.ActiveDocument
oDoc.SaveAs("D:\dokument.doc ")
oWord.Quit(False)
End Sub
Når jeg vælger "Publish now" får jeg følgende advarsler:
Reference ’Microsoft.Office.Interop.Word’ does not allow partially trusted callers
Reference ’Microsoft.Office.Interop.Word’ is an interop assembly requiring full trust
Security niveau er sat til "this is a full trust application"
Hvad gør jeg forkert ?