There is an application that calls an EXE that I developped in VB.NET
This EXE opens a word application:

Code:
objWordInstance = GetObject(, "Word.Application")

If objWordInstance Is Nothing Then
    objWordInstance = CreateObject("Word.Application")
End If
After that I try to show a MessageBox but it is always hidden behind my word application. Any idea what to do?