I have code in Auto Open to open a UserForm when file opens. This appears to work fine UNTIL I insert the Word file into a third-party storage-type location. Then when you open the file, the form pops up but you don't see the Word document until after
you've made selections. This is disconcerting to users.
Edit 2/25/2012: I finally figured out how to fix the above I need this at the beginning of the Auto_Open code:
ActiveWindow.Visible = True
(So simple, yet so difficult to get to because it doesn't seem like I should have to make it visible.)
Any ideas on how to ensure that Word fully opens before it pops up the userform?
2nd problem is if you have dual monitors (and most of my users do), the form pops up sort of in the middle of the two monitors. Is there any way to have it pop up on top the Word file it is associated with? It's a fairly small form and is difficult to
notice when it does this.
Thanks.