Jun 8, 2006 #1 Cloonalt Programmer Jan 4, 2003 354 US I Open Word in VBA code using below: Set oapp = CreateObject("Word.Application") oapp.Visible = True After I set Word to visible I want to minimize it. Can I do that? Thanks.
I Open Word in VBA code using below: Set oapp = CreateObject("Word.Application") oapp.Visible = True After I set Word to visible I want to minimize it. Can I do that? Thanks.
Jun 8, 2006 Thread starter #2 Cloonalt Programmer Jan 4, 2003 354 US I'll answer my own question. Set oapp = CreateObject("Word.Application") oapp.Visible = True oapp.Application.WindowState = wdWindowStateMinimize Upvote 0 Downvote
I'll answer my own question. Set oapp = CreateObject("Word.Application") oapp.Visible = True oapp.Application.WindowState = wdWindowStateMinimize
Jun 8, 2006 #3 firefytr Technical User May 18, 2004 1,130 US LOL! Great! Good job in finding/posting your solution. Now others will have an excellent solution when they have the same problem! Give yourself a star! ----------- Regards, Zack Barresse Upvote 0 Downvote
LOL! Great! Good job in finding/posting your solution. Now others will have an excellent solution when they have the same problem! Give yourself a star! ----------- Regards, Zack Barresse