I’m managing word from my Delphi application to modify a single file without showing word to the user.
Everything works nice until the moment where i call the following code to close the document :
// FVBA is an OLE object exctrated from a running instance of word
FVBA.Application.Documents.Close;
After this, word becomes visible and i have to hide it again.
I can set the ‘visible’ property to false after this but my aim is to not show word at all, even for a split second, do you know how to do so ?