Hi all.
After I've opened Word like this:
VB Code:
Dim wordApp as Word.Application Set wordApp = New Word.Application With wordApp.Application .Documents.Open [I]Filename[/I] .Visible = True End With
I want to display a vb form containing a list of values that can be entered into the word document. The problem is that if I show a form after the code above, Word is being send to the background and my form is shown on top of my vb application.
Also how can I make sure that this vb form stays on top if I relocate the cursor in Word?




Reply With Quote