minimising word document

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hello Group. from Access. I am opening a word document and inserting some
bookmarks.

I would like the document to be minimised but I can either get it full
screen or hidden.

I don't see anything within objword.documents or through active documents.

any ideas?
 
Something like this should work:

Dim objWord As New Word.Application
objWord.Documents.Add
' Do your bookmark stuff here
objWord.Visible = True
objWord.WindowState = wdWindowStateMinimize

Barry
 
your the man!

Barry Gilbert said:
Something like this should work:

Dim objWord As New Word.Application
objWord.Documents.Add
' Do your bookmark stuff here
objWord.Visible = True
objWord.WindowState = wdWindowStateMinimize

Barry
 
Back
Top