Search results

  1. K

    Function to test if an application and file is open

    Further to my earlier posting. I use this method where I want to do other things with Word, each create document, template, populate with data. If you wish simply to open an existing Word document then set and follow a hyperlink address with the full path of the document, e.g...
  2. K

    Function to test if an application and file is open

    You could try GetObject to see if Word is already open and test for an error response. If error (I think 429) Word is not open then create a new Word application, e.g. Set WordApp = GetObject(,"Word Application") If err = 429 then Set WordApp = New Word.Application Similarly you could try to...
Back
Top Bottom