Hallo,
ich rufe von einer Notes-Maske aus heraus Word auf:
| Dim wrdApp As Variant |
| Dim wordFile As Variant |
| Dim count As Integer |
| Dim sPathToSavedDoc As String |
| |
| sPathToSavedDoc = "C:\Temp\wordFile.doc" |
| |
| Set wrdApp = CreateObject("Word.Application") |
| |
| Set wordFile = GetObject(sPathToSavedDoc , "Word.Document") |
| |
| wordFile.Application.Visible = True |
Bisher hatten wir bei uns in der Firma Office 2013.
Sobald ich "wordFile.Application.Visible = True" gesetzt habe, wurde die gewünschte Word-Datei geöffnet.
Seit kurzem haben wir Office 365 (32 Bit).
Wenn ich das jetzt unter Office 365 aufrufe "wordFile.Application.Visible = True", dann wird Word zweimal geöffnet: einmal ein leeres Word und einmal die gewünschte Datei.
Hat von euch jemand eine Idee, an was das liegen könnte? Warum wird Word zwimal geöffnet?
Ist das ein Bug (in Notes, Word...?)? Oder hat sich der Code geändert?
Hat von euch auch jemand das Problem?
Vielen Dank
Viele Grüße
George