Aug 14, 2002 #1 upplepop IS-IT--Management Jun 1, 2002 173 US What is the command to set the focus on a Word document so I can reference it? Thanks.
Aug 15, 2002 #2 mincefish Programmer Sep 27, 2001 74 GB Try this Code: Dim MyWord As Object Set MyWord = GetObject(, "Word.Application") MyWord.Application.Visible = True MyWord.Parent.Windows(1).Visible = True HTH Mincefish Upvote 0 Downvote
Try this Code: Dim MyWord As Object Set MyWord = GetObject(, "Word.Application") MyWord.Application.Visible = True MyWord.Parent.Windows(1).Visible = True HTH Mincefish